Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #include <test/sheet/xdatapilotfieldgrouping.hxx>
11 :
12 : #include <com/sun/star/sheet/XDataPilotFieldGrouping.hpp>
13 : #include <com/sun/star/sheet/DataPilotFieldGroupBy.hpp>
14 :
15 : #include "cppunit/extensions/HelperMacros.h"
16 :
17 : using namespace css;
18 : using namespace css::uno;
19 :
20 : namespace apitest {
21 :
22 1 : void XDataPilotFieldGrouping::testCreateNameGroup()
23 : {
24 1 : uno::Reference< sheet::XDataPilotFieldGrouping > xDataPilotFieldGrouping(init(),UNO_QUERY_THROW);
25 2 : uno::Reference< sheet::XDataPilotField > xDataPilotField( xDataPilotFieldGrouping, UNO_QUERY_THROW );
26 2 : uno::Reference< container::XNameAccess > xNameAccess( xDataPilotField->getItems(), UNO_QUERY_THROW );
27 1 : CPPUNIT_ASSERT(xNameAccess->hasElements());
28 :
29 2 : uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
30 2 : xDataPilotFieldGrouping->createNameGroup( aElements );
31 1 : }
32 :
33 0 : void XDataPilotFieldGrouping::testCreateDateGroup()
34 : {
35 0 : uno::Reference< sheet::XDataPilotFieldGrouping > xDataPilotFieldGrouping(init(),UNO_QUERY_THROW);
36 0 : sheet::DataPilotFieldGroupInfo aGroupInfo;
37 0 : aGroupInfo.GroupBy = sheet::DataPilotFieldGroupBy::MONTHS;
38 0 : aGroupInfo.HasDateValues = true;
39 0 : xDataPilotFieldGrouping->createDateGroup(aGroupInfo);
40 0 : }
41 :
42 90 : }
43 :
44 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|