/*
* 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.sheet;
import lib.MultiMethodTest;
import lib.Status;
import lib.StatusException;
import com.sun.star.sheet.XDataPilotDescriptor;
import com.sun.star.sheet.XDataPilotTables;
import com.sun.star.sheet.XSpreadsheet;
import com.sun.star.table.CellAddress;
/**
* Testing com.sun.star.sheet.XDataPilotTables
* interface methods :
*
createDataPilotDescriptor() insertNewByName() removeByName()* This test needs the following object relations : *
'SHEET' (of type XSpreadsheet):
* to have a spreadsheet document for document content checking* @see com.sun.star.sheet.XDataPilotTables */ public class _XDataPilotTables extends MultiMethodTest { public XDataPilotTables oObj = null; XDataPilotDescriptor DPDscr = null; String name = "XDataPilotTables"; CellAddress CA = new CellAddress((short)0, 9, 8); XSpreadsheet oSheet = null; /** * Retrieves object relations. * @throws StatusException If one of relations not found. */ protected void before() { oSheet = (XSpreadsheet)tEnv.getObjRelation("SHEET"); if (oSheet == null) throw new StatusException(Status.failed ("Relation 'SHEET' not found")); } /** * Test calls the method, stores returned value and checks returned value. *
Has OK status if returned value isn't null.
*/ public void _createDataPilotDescriptor(){ DPDscr = oObj.createDataPilotDescriptor(); tRes.tested("createDataPilotDescriptor()", DPDscr != null); } /** * Test calls the method inserting new table with new name and then calls * the method inserting table with existent name.
* Has OK status if the cell content where table was inserted is * equal to 'Filter' after first call and exception was thrown during * second call.
* The following method tests are to be completed successfully before : *
createDataPilotDescriptor() : to have
* XDataPilotDescriptor created by this method* Has OK status if the cell where table was removed from is empty * after first call and exception was thrown during second call.
* The following method tests are to be completed successfully before : *
insertNewByName(): to have name of existent table