From f7ae9bd132d81412dea37874e5fbc7692781222c Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Wed, 14 Nov 2018 06:36:19 +0000 Subject: tdf#45904 Move _XEnumeration tests for ScCellFormatsEnumeration to C++ Change-Id: Icf133ae51a564d889997d3920de2816aadd105e1 Reviewed-on: https://gerrit.libreoffice.org/63353 Tested-by: Jenkins Reviewed-by: Jens Carl --- qadevOOo/Jar_OOoRunner.mk | 1 - ...n.star.comp.office.ScCellFormatsEnumeration.csv | 2 - .../java/mod/_sc/ScCellFormatsEnumeration.java | 128 --------------------- 3 files changed, 131 deletions(-) delete mode 100644 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScCellFormatsEnumeration.csv delete mode 100644 qadevOOo/tests/java/mod/_sc/ScCellFormatsEnumeration.java (limited to 'qadevOOo') diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk index 811627a1b389..59d57b1a2f66 100644 --- a/qadevOOo/Jar_OOoRunner.mk +++ b/qadevOOo/Jar_OOoRunner.mk @@ -962,7 +962,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\ qadevOOo/tests/java/mod/_sc/ScCellCursorObj \ qadevOOo/tests/java/mod/_sc/ScCellFieldObj \ qadevOOo/tests/java/mod/_sc/ScCellFieldsObj \ - qadevOOo/tests/java/mod/_sc/ScCellFormatsEnumeration \ qadevOOo/tests/java/mod/_sc/ScCellFormatsObj \ qadevOOo/tests/java/mod/_sc/ScCellObj \ qadevOOo/tests/java/mod/_sc/ScCellRangeObj \ diff --git a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScCellFormatsEnumeration.csv b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScCellFormatsEnumeration.csv deleted file mode 100644 index f977812f7f3e..000000000000 --- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScCellFormatsEnumeration.csv +++ /dev/null @@ -1,2 +0,0 @@ -"ScCellFormatsEnumeration";"com::sun::star::container::XEnumeration";"hasMoreElements()" -"ScCellFormatsEnumeration";"com::sun::star::container::XEnumeration";"nextElement()" diff --git a/qadevOOo/tests/java/mod/_sc/ScCellFormatsEnumeration.java b/qadevOOo/tests/java/mod/_sc/ScCellFormatsEnumeration.java deleted file mode 100644 index a605e57ce4f0..000000000000 --- a/qadevOOo/tests/java/mod/_sc/ScCellFormatsEnumeration.java +++ /dev/null @@ -1,128 +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 mod._sc; - -import java.io.PrintWriter; - -import lib.TestCase; -import lib.TestEnvironment; -import lib.TestParameters; -import util.SOfficeFactory; - -import com.sun.star.container.XEnumerationAccess; -import com.sun.star.container.XIndexAccess; -import com.sun.star.lang.XComponent; -import com.sun.star.sheet.XCellFormatRangesSupplier; -import com.sun.star.sheet.XSpreadsheet; -import com.sun.star.sheet.XSpreadsheetDocument; -import com.sun.star.sheet.XSpreadsheets; -import com.sun.star.uno.AnyConverter; -import com.sun.star.uno.Type; -import com.sun.star.uno.UnoRuntime; -import com.sun.star.uno.XInterface; - -/** -* Test for object which is represented by service -* com.sun.star.sheet.CellFormatRangesEnumeration.

-* Object implements the following interfaces : -*

-* @see com.sun.star.sheet.CellFormatRangesEnumeration -* @see com.sun.star.container.XEnumeration -* @see ifc.container._XEnumeration -*/ -public class ScCellFormatsEnumeration extends TestCase { - private XSpreadsheetDocument xSheetDoc = null; - - /** - * Creates Spreadsheet document. - */ - @Override - protected void initialize( TestParameters tParam, PrintWriter log ) throws Exception { - // get a soffice factory object - SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF()); - - log.println( "creating a sheetdocument" ); - xSheetDoc = SOF.createCalcDoc(null); - } - - /** - * Disposes Spreadsheet document. - */ - @Override - protected void cleanup( TestParameters tParam, PrintWriter log ) { - log.println( " disposing xSheetDoc " ); - XComponent oComp = UnoRuntime.queryInterface (XComponent.class, xSheetDoc); - util.DesktopTools.closeDoc(oComp); - } - - /** - * Creating a TestEnvironment for the interfaces to be tested. - * Retrieves a collection of spreadsheets from a document, - * and takes one of them. Then retrieves a collection of cell format range - * using the interface XCellFormatRangesSupplier, creates the - * enumeration of this collection using interface XEnumerationAccess. - * This enumeration is the instance of the service - * com.sun.star.sheet.CellFormatRangesEnumeration. - * Object relations created : - * - * @see com.sun.star.sheet.CellFormatRangesEnumeration - * @see com.sun.star.sheet.XCellFormatRangesSupplier - * @see com.sun.star.container.XEnumerationAccess - */ - @Override - protected TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) throws Exception { - - XInterface oObj = null; - - log.println("getting sheets"); - XSpreadsheets xSpreadsheets = xSheetDoc.getSheets(); - - log.println("getting a sheet"); - XSpreadsheet oSheet = null; - XIndexAccess oIndexAccess = UnoRuntime.queryInterface(XIndexAccess.class, xSpreadsheets); - - oSheet = (XSpreadsheet) AnyConverter.toObject( - new Type(XSpreadsheet.class),oIndexAccess.getByIndex(0)); - - log.println("getting CellFormats"); - - XCellFormatRangesSupplier xCFRS = UnoRuntime.queryInterface(XCellFormatRangesSupplier.class,oSheet); - XIndexAccess formats = xCFRS.getCellFormatRanges(); - - log.println("getting Enumeration"); - XEnumerationAccess oEnum = UnoRuntime.queryInterface(XEnumerationAccess.class,formats); - oObj = oEnum.createEnumeration(); - - log.println("creating a new environment for object"); - TestEnvironment tEnv = new TestEnvironment(oObj); - - tEnv.addObjRelation("ENUM", oEnum); - - return tEnv; - } - -} // finish class ScCellFormatsEnumeration - -- cgit v1.2.3