diff options
author | Jens Carl <j.carl43@gmx.de> | 2019-01-22 23:08:40 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2019-01-23 01:27:06 +0100 |
commit | be75c098440f073d92dd713ba2492625aff8246e (patch) | |
tree | 8b9a86e405c58ac484ee3b858de6ce0f3bdbd212 /qadevOOo/tests/java/ifc | |
parent | 301ff4dfb82dfd961b993aec151784bd478b4f97 (diff) |
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/java/ifc')
-rw-r--r-- | qadevOOo/tests/java/ifc/drawing/_XDrawPageExpander.java | 65 |
1 files changed, 0 insertions, 65 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 - |