1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
10 #include <test/sheet/xdatapilotfieldgrouping.hxx>
12 #include <com/sun/star/sheet/XDataPilotFieldGrouping.hpp>
13 #include <com/sun/star/sheet/DataPilotFieldGroupBy.hpp>
15 #include "cppunit/extensions/HelperMacros.h"
18 using namespace css::uno
;
22 void XDataPilotFieldGrouping::testCreateNameGroup()
24 uno::Reference
< sheet::XDataPilotFieldGrouping
> xDataPilotFieldGrouping(init(),UNO_QUERY_THROW
);
25 uno::Reference
< sheet::XDataPilotField
> xDataPilotField( xDataPilotFieldGrouping
, UNO_QUERY_THROW
);
26 uno::Reference
< container::XNameAccess
> xNameAccess( xDataPilotField
->getItems(), UNO_QUERY_THROW
);
27 CPPUNIT_ASSERT(xNameAccess
->hasElements());
29 uno::Sequence
< OUString
> aElements
= xNameAccess
->getElementNames();
30 xDataPilotFieldGrouping
->createNameGroup( aElements
);
33 void XDataPilotFieldGrouping::testCreateDateGroup()
35 uno::Reference
< sheet::XDataPilotFieldGrouping
> xDataPilotFieldGrouping(init(),UNO_QUERY_THROW
);
36 sheet::DataPilotFieldGroupInfo aGroupInfo
;
37 aGroupInfo
.GroupBy
= sheet::DataPilotFieldGroupBy::MONTHS
;
38 aGroupInfo
.HasDateValues
= true;
39 xDataPilotFieldGrouping
->createDateGroup(aGroupInfo
);
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */