LibreOffice Module test (master) 1
xdatapilotfieldgrouping.cxx
Go to the documentation of this file.
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
11
12#include <com/sun/star/sheet/XDataPilotFieldGrouping.hpp>
13#include <com/sun/star/sheet/DataPilotFieldGroupBy.hpp>
14
15#include <cppunit/TestAssert.h>
16
17using namespace css;
18using namespace css::uno;
19
20namespace apitest {
21
23{
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());
28
29 uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
30 xDataPilotFieldGrouping->createNameGroup( aElements );
31}
32
34{
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);
40}
41
42}
43
44/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Reference< css::uno::XInterface > init()=0