summaryrefslogtreecommitdiffstats
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2019-01-22 23:08:40 +0000
committerJens Carl <j.carl43@gmx.de>2019-01-23 01:27:06 +0100
commitbe75c098440f073d92dd713ba2492625aff8246e (patch)
tree8b9a86e405c58ac484ee3b858de6ce0f3bdbd212 /qadevOOo/tests
parenttdf#122885: fix crash when converting odb file to Firebird (diff)
downloadcore-be75c098440f073d92dd713ba2492625aff8246e.tar.gz
core-be75c098440f073d92dd713ba2492625aff8246e.zip
tdf#45904 Clean up _XDrawPageExpander Java tests
The XDrawPageExpander interface is deprecated since commit d081c80877dc1ae413b9d65c206485b6821d0ef8 Change-Id: I3400f09667004669286ffb94c2c89c284f0eb3f0 Reviewed-on: https://gerrit.libreoffice.org/66756 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/drawing/_XDrawPageExpander.java65
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScDrawPagesObj.java3
-rw-r--r--qadevOOo/tests/java/mod/_sd/SdDrawPagesAccess.java3
3 files changed, 0 insertions, 71 deletions
diff --git a/qadevOOo/tests/java/ifc/drawing/_XDrawPageExpander.java b/qadevOOo/tests/java/ifc/drawing/_XDrawPageExpander.java
deleted file mode 100644
index 1f3eb73694e7..000000000000
--- a/qadevOOo/tests/java/ifc/drawing/_XDrawPageExpander.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package ifc.drawing;
-
-import lib.MultiMethodTest;
-import lib.StatusException;
-import lib.Status;
-
-import com.sun.star.drawing.XDrawPage;
-import com.sun.star.drawing.XDrawPageExpander;
-import com.sun.star.drawing.XDrawPages;
-
-/**
-* Testing <code>com.sun.star.drawing.XDrawPageExpander</code>
-* interface methods :
-* <ul>
-* <li><code> expand()</code></li>
-* </ul> <p>
-* This test needs the following object relations :
-* <ul>
-* <li> <code>'DrawPage'</code> (of type <code>XDrawPage</code>):
-* draw page to be expanded. </li>
-* <ul> <p>
-* Test is <b> NOT </b> multithread compliant. <p>
-* @see com.sun.star.drawing.XDrawPageExpander
-*/
-public class _XDrawPageExpander extends MultiMethodTest {
- public XDrawPageExpander oObj = null;
-
- /**
- * First the relation is retrieved. Then the method is called.<p>
- * Has <b> OK </b> status if the method returns not null value. <p>
- */
- public void _expand() {
- boolean result = true;
- XDrawPage oDrawPage = (XDrawPage) tEnv.getObjRelation("DrawPage");
- if ( oDrawPage == null ) {
- // SKIPPED.FAILED - the ObjectRelation is not available
- throw new StatusException(Status.failed( "ObjectRelation('DrawPages') XDrawPages n.a."));
- }
- log.println("testing expand() ... ");
-
- XDrawPages pages = oObj.expand(oDrawPage);
- result = pages != null;
-
- tRes.tested("expand()", result);
- } // end expand
-} // end DrawPageExpander
-
diff --git a/qadevOOo/tests/java/mod/_sc/ScDrawPagesObj.java b/qadevOOo/tests/java/mod/_sc/ScDrawPagesObj.java
index 345901bdfc52..16bf9a80edf1 100644
--- a/qadevOOo/tests/java/mod/_sc/ScDrawPagesObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScDrawPagesObj.java
@@ -38,19 +38,16 @@ import com.sun.star.uno.XInterface;
* <code>com.sun.star.drawing.DrawPages</code>. <p>
* Object implements the following interfaces :
* <ul>
-* <li> <code>com::sun::star::drawing::XDrawPageExpander</code></li>
* <li> <code>com::sun::star::container::XIndexAccess</code></li>
* <li> <code>com::sun::star::drawing::XDrawPageSummarizer</code></li>
* <li> <code>com::sun::star::container::XElementAccess</code></li>
* <li> <code>com::sun::star::drawing::XDrawPages</code></li>
* </ul>
* @see com.sun.star.drawing.DrawPages
-* @see com.sun.star.drawing.XDrawPageExpander
* @see com.sun.star.container.XIndexAccess
* @see com.sun.star.drawing.XDrawPageSummarizer
* @see com.sun.star.container.XElementAccess
* @see com.sun.star.drawing.XDrawPages
-* @see ifc.drawing._XDrawPageExpander
* @see ifc.container._XIndexAccess
* @see ifc.drawing._XDrawPageSummarizer
* @see ifc.container._XElementAccess
diff --git a/qadevOOo/tests/java/mod/_sd/SdDrawPagesAccess.java b/qadevOOo/tests/java/mod/_sd/SdDrawPagesAccess.java
index ea4afc016f07..0fa45e5779c3 100644
--- a/qadevOOo/tests/java/mod/_sd/SdDrawPagesAccess.java
+++ b/qadevOOo/tests/java/mod/_sd/SdDrawPagesAccess.java
@@ -37,19 +37,16 @@ import com.sun.star.uno.XInterface;
* <code>com.sun.star.drawing.DrawPages</code>. <p>
* Object implements the following interfaces :
* <ul>
-* <li> <code>com::sun::star::drawing::XDrawPageExpander</code></li>
* <li> <code>com::sun::star::container::XIndexAccess</code></li>
* <li> <code>com::sun::star::drawing::XDrawPageSummarizer</code></li>
* <li> <code>com::sun::star::container::XElementAccess</code></li>
* <li> <code>com::sun::star::drawing::XDrawPages</code></li>
* </ul>
* @see com.sun.star.drawing.DrawPages
-* @see com.sun.star.drawing.XDrawPageExpander
* @see com.sun.star.container.XIndexAccess
* @see com.sun.star.drawing.XDrawPageSummarizer
* @see com.sun.star.container.XElementAccess
* @see com.sun.star.drawing.XDrawPages
-* @see ifc.drawing._XDrawPageExpander
* @see ifc.container._XIndexAccess
* @see ifc.drawing._XDrawPageSummarizer
* @see ifc.container._XElementAccess