/*
* 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 util.ValueComparer;
import util.XInstCreator;
import com.sun.star.drawing.XLayer;
import com.sun.star.drawing.XLayerManager;
import com.sun.star.drawing.XShape;
import com.sun.star.drawing.XShapes;
import com.sun.star.uno.XInterface;
/**
* Testing com.sun.star.drawing.XLayerManager
* interface methods :
*
insertNewByIndex()
remove()
attachShapeToLayer()
getLayerForShape()
* This test needs the following object relations : *
'Shape'
(of type util.XInstCreator
):
* instance creator which can create shapes.'Shapes'
* (of type com.sun.star.drawing.XShapes
):
* The collection of shapes in the document. Is used
* to add new created shapes.* Test is NOT multithread compliant.
* @see com.sun.star.drawing.XLayerManager */ public class _XLayerManager extends MultiMethodTest { public XLayerManager oObj = null; // oObj filled by MultiMethodTest XInstCreator shape = null; public XInterface oShape = null; public XLayer oL = null; /** * Inserts a new layer into collection.
* Has OK status if the value returned is not null.
*/ public void _insertNewByIndex(){ log.println("insertNewByName() ... "); oL = oObj.insertNewByIndex(0); tRes.tested("insertNewByIndex()", oL != null); } /** * First a shape created and inserted into the document using * relations retrieved. Attaches this shape to layer created before.
* Has OK status if the method successfully returns * and no exceptions were thrown.
* The following method tests are to be completed successfully before : *
insertNewByIndex
: to have a layer attach to.* Has OK status if the names of layer get and * the layer attached before are equal.
* The following method tests are to be completed successfully before : *
attachShapeToLayer()
* Has OK status if number of layers decreases by one.
* The following method tests are to be completed successfully before : *
getLayerForShape()