summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2017-09-08 08:48:08 +0000
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-10-29 22:08:00 +0100
commita060947e8c1538cedae5dee6b2a4e7a15d434d66 (patch)
tree011c63786d430402f44837cab640669ca14d1657 /qadevOOo/tests
parent33a617aa43cf552b3a45b8391df28579883cd5de (diff)
tdf#45904: Move _XSubTotalDescriptor Java tests to C++
Change-Id: Ie1ec8879972f77c5278992aadf9324f755859d96 Reviewed-on: https://gerrit.libreoffice.org/42096 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XSubTotalDescriptor.java69
1 files changed, 0 insertions, 69 deletions
diff --git a/qadevOOo/tests/java/ifc/sheet/_XSubTotalDescriptor.java b/qadevOOo/tests/java/ifc/sheet/_XSubTotalDescriptor.java
deleted file mode 100644
index 923beaa2103c..000000000000
--- a/qadevOOo/tests/java/ifc/sheet/_XSubTotalDescriptor.java
+++ /dev/null
@@ -1,69 +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 com.sun.star.sheet.GeneralFunction;
-import com.sun.star.sheet.SubTotalColumn;
-import com.sun.star.sheet.XSubTotalDescriptor;
-
-import lib.MultiMethodTest;
-
-
-/**
-* Testing <code>com.sun.star.sheet.XSubTotalDescriptor</code>
-* interface methods :
-* <ul>
-* <li><code> addNew()</code></li>
-* <li><code> clear()</code></li>
-* </ul> <p>
-* @see com.sun.star.sheet.XSubTotalDescriptor
-*/
-public class _XSubTotalDescriptor extends MultiMethodTest {
- public XSubTotalDescriptor oObj = null;
-
- /**
- * Test creates a subtotal field definition and adds it to the descriptor.<p>
- * Has <b> OK </b> status if the method successfully returns. <p>
- */
- public void _addNew() {
- SubTotalColumn[] columns = new SubTotalColumn[1];
- SubTotalColumn column = new SubTotalColumn();
- column.Column = 5;
- column.Function = GeneralFunction.SUM;
- columns[0] = column;
- oObj.addNew(columns, 1);
- tRes.tested("addNew()", true);
- }
-
- /**
- * Test just calls the method. <p>
- * Has <b> OK </b> status if the method successfully returns. <p>
- */
- public void _clear() {
- oObj.clear();
- tRes.tested("clear()", true);
- }
-
- /**
- * Forces environment recreation.
- */
- @Override
- protected void after() {
- disposeEnvironment();
- }
-} // finish class _XSubTotalDescriptor