diff options
author | Jens Carl <j.carl43@gmx.de> | 2017-12-06 22:48:01 +0000 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2017-12-07 06:48:37 +0100 |
commit | c7e5c7da98d40852d18bd7683e40c9679836ba49 (patch) | |
tree | 2e3b3261cca1bea2dcbf3f302c812b2cf5b4ccf6 /qadevOOo | |
parent | e5a3f12588e8e8eb80cc5af4e412fa2c83f0895e (diff) |
tdf#45904 Move _XDataPilotTablesSupplier Java test to C++
Change-Id: Iaea5b7abc0a289035c7a230c0034d2422cc4ae5f
Reviewed-on: https://gerrit.libreoffice.org/46001
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/Jar_OOoRunner.mk | 1 | ||||
-rw-r--r-- | qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableSheetObj.csv | 1 | ||||
-rw-r--r-- | qadevOOo/tests/java/ifc/sheet/_XDataPilotTablesSupplier.java | 50 |
3 files changed, 0 insertions, 52 deletions
diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk index 24dd5cd7f8a9..5751f1cb8ef9 100644 --- a/qadevOOo/Jar_OOoRunner.mk +++ b/qadevOOo/Jar_OOoRunner.mk @@ -598,7 +598,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\ qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges \ qadevOOo/tests/java/ifc/sheet/_XDataPilotField \ qadevOOo/tests/java/ifc/sheet/_XDataPilotTables \ - qadevOOo/tests/java/ifc/sheet/_XDataPilotTablesSupplier \ qadevOOo/tests/java/ifc/sheet/_XDDELink \ qadevOOo/tests/java/ifc/sheet/_XDocumentAuditing \ qadevOOo/tests/java/ifc/sheet/_XEnhancedMouseClickBroadcaster \ diff --git a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableSheetObj.csv b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableSheetObj.csv index 5356fe01fc80..48032b0f4309 100644 --- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableSheetObj.csv +++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScTableSheetObj.csv @@ -231,7 +231,6 @@ "ScTableSheetObj";"com::sun::star::chart::XChartDataArray";"setRowDescriptions()" "ScTableSheetObj";"com::sun::star::chart::XChartDataArray";"getColumnDescriptions()" "ScTableSheetObj";"com::sun::star::chart::XChartDataArray";"setColumnDescriptions()" -"ScTableSheetObj";"com::sun::star::sheet::XDataPilotTablesSupplier";"getDataPilotTables()" "ScTableSheetObj";"com::sun::star::sheet::XCellFormatRangesSupplier";"getCellFormatRanges()" "ScTableSheetObj";"com::sun::star::util::XModifyBroadcaster#optional";"addModifyListener()" "ScTableSheetObj";"com::sun::star::util::XModifyBroadcaster#optional";"removeModifyListener()" diff --git a/qadevOOo/tests/java/ifc/sheet/_XDataPilotTablesSupplier.java b/qadevOOo/tests/java/ifc/sheet/_XDataPilotTablesSupplier.java deleted file mode 100644 index 312c3db253ac..000000000000 --- a/qadevOOo/tests/java/ifc/sheet/_XDataPilotTablesSupplier.java +++ /dev/null @@ -1,50 +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.sheet; - -import lib.MultiMethodTest; - -import com.sun.star.sheet.XDataPilotTables; -import com.sun.star.sheet.XDataPilotTablesSupplier; - -/** -* Testing <code>com.sun.star.sheet.XDataPilotTablesSupplier</code> -* interface methods : -* <ul> -* <li><code> getDataPilotTables()</code></li> -* </ul> <p> -* @see com.sun.star.sheet.XDataPilotTablesSupplier -*/ -public class _XDataPilotTablesSupplier extends MultiMethodTest { - - public XDataPilotTablesSupplier oObj = null; - - /** - * Test calls the method and checks returned value. <p> - * Has <b> OK </b> status if returned value isn't null - * and no exceptions were thrown. <p> - */ - public void _getDataPilotTables() { - XDataPilotTables DPTables = oObj.getDataPilotTables(); - tRes.tested("getDataPilotTables()", DPTables != null); - } - - -} // EOC _XDataPilotTablesSupplier - |