From 96f8861a29ebf650dedcbee71b8360133c0ceabb Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Fri, 15 Dec 2017 20:52:32 +0000 Subject: tdf#45904 Move _XCellFormatRangesSupplier Java test to C++ Change-Id: I95c20893878385ef173875956d3d7166b0e9e563 Reviewed-on: https://gerrit.libreoffice.org/46578 Tested-by: Jenkins Reviewed-by: Jens Carl --- .../java/ifc/sheet/_XCellFormatRangesSupplier.java | 83 ---------------------- 1 file changed, 83 deletions(-) delete mode 100644 qadevOOo/tests/java/ifc/sheet/_XCellFormatRangesSupplier.java (limited to 'qadevOOo/tests/java') diff --git a/qadevOOo/tests/java/ifc/sheet/_XCellFormatRangesSupplier.java b/qadevOOo/tests/java/ifc/sheet/_XCellFormatRangesSupplier.java deleted file mode 100644 index 6a1e2af1bef3..000000000000 --- a/qadevOOo/tests/java/ifc/sheet/_XCellFormatRangesSupplier.java +++ /dev/null @@ -1,83 +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.container.XIndexAccess; -import com.sun.star.sheet.XCellFormatRangesSupplier; - -/** - * Interface test to check the interface XCellFormatRangesSupplier - * - * methods: - * - * getCellFormatRanges() - * - */ - -public class _XCellFormatRangesSupplier extends MultiMethodTest { - - public XCellFormatRangesSupplier oObj = null; - - /** - * call the method getCellFormatRanges and returns OK result if - * the gained XIndexAccess isn't null and the method checkIndexAccess - * returns true. - */ - - public void _getCellFormatRanges() { - boolean res = true; - XIndexAccess xIA = oObj.getCellFormatRanges(); - if (xIA != null) { - res = checkIndexAccess(xIA); - } else { - log.println("The gained IndexAccess is null"); - res = false; - } - tRes.tested("getCellFormatRanges()",res); - } - - /** - * calls the method getCount at the IndexAccess, returns true is it is >0 - * and getByIndex() doesn't throw an exception for Indexes between 0 and count - */ - - protected boolean checkIndexAccess(XIndexAccess xIA) { - boolean res = true; - int count = xIA.getCount(); - log.println("Found "+count+" Elements"); - res &= count>0; - for (int k=0; k