Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * Version: MPL 1.1 / GPLv3+ / LGPLv3+
4 : *
5 : * The contents of this file are subject to the Mozilla Public License Version
6 : * 1.1 (the "License"); you may not use this file except in compliance with
7 : * the License or as specified alternatively below. You may obtain a copy of
8 : * the License at http://www.mozilla.org/MPL/
9 : *
10 : * Software distributed under the License is distributed on an "AS IS" basis,
11 : * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 : * for the specific language governing rights and limitations under the
13 : * License.
14 : *
15 : * Major Contributor(s):
16 : * Copyright (C) 2012 Markus Mohrhard <markus.mohrhard@googlemail.com> (initial developer)
17 : *
18 : * All Rights Reserved.
19 : *
20 : * For minor contributions see the git repository.
21 : *
22 : * Alternatively, the contents of this file may be used under the terms of
23 : * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
24 : * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
25 : * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
26 : * instead of those above.
27 : */
28 :
29 : #include <test/sheet/xdatapilottable.hxx>
30 : #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
31 : #include <com/sun/star/sheet/XSpreadsheet.hpp>
32 : #include <com/sun/star/sheet/XDataPilotTablesSupplier.hpp>
33 : #include <com/sun/star/sheet/XDataPilotTables.hpp>
34 : #include <com/sun/star/sheet/XDataPilotTable.hpp>
35 : #include <com/sun/star/table/XCell.hpp>
36 : #include <com/sun/star/util/XCloseable.hpp>
37 : #include <com/sun/star/table/CellRangeAddress.hpp>
38 : #include <com/sun/star/beans/XPropertySet.hpp>
39 :
40 : #include <rtl/ustring.hxx>
41 :
42 : using namespace com::sun::star::uno;
43 :
44 : namespace apitest
45 : {
46 :
47 0 : void XDataPilotTable::testGetOutputRange()
48 : {
49 0 : uno::Reference< sheet::XDataPilotTable > xDPTable(init(),UNO_QUERY_THROW);
50 :
51 0 : table::CellRangeAddress aRange = xDPTable->getOutputRange();
52 0 : CPPUNIT_ASSERT( aRange.Sheet == 0 );
53 0 : CPPUNIT_ASSERT( aRange.StartColumn == 7 );
54 0 : CPPUNIT_ASSERT( aRange.StartRow == 8 );
55 0 : }
56 :
57 0 : void XDataPilotTable::testRefresh()
58 : {
59 0 : uno::Reference< sheet::XDataPilotTable > xDPTable(init(),UNO_QUERY_THROW);
60 0 : std::cout << "xCellForChange: Old Value: " << xCellForChange->getValue() << std::endl;
61 0 : std::cout << "xCellForCheck: Old Value: " << xCellForCheck->getValue() << std::endl;
62 0 : double aOldData = xCellForCheck->getValue();
63 0 : xCellForChange->setValue( 5 );
64 :
65 0 : xDPTable->refresh();
66 0 : xDPTable->refresh();
67 0 : std::cout << "xCellForChange: Old Value: " << xCellForChange->getValue() << std::endl;
68 0 : std::cout << "xCellForCheck: Old Value: " << xCellForCheck->getValue() << std::endl;
69 0 : double aNewData = xCellForCheck->getValue();
70 0 : CPPUNIT_ASSERT_MESSAGE("value needs to change", aOldData != aNewData);
71 0 : }
72 :
73 0 : XDataPilotTable::~XDataPilotTable()
74 : {
75 0 : }
76 :
77 0 : }
78 :
79 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|