fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / test / source / sheet / xdatapilotfieldgrouping.cxx
blobfdfdfd5655c20f9166fe1ade94ed1f78b8a522b2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
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"
17 using namespace css;
18 using namespace css::uno;
20 namespace apitest {
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: */