1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/calc_unoapi_test.hxx>
11 #include <test/container/xenumeration.hxx>
13 #include <com/sun/star/beans/XPropertySet.hpp>
14 #include <com/sun/star/container/XEnumerationAccess.hpp>
15 #include <com/sun/star/lang/XComponent.hpp>
16 #include <com/sun/star/sheet/XDatabaseRanges.hpp>
17 #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
18 #include <com/sun/star/table/CellRangeAddress.hpp>
19 #include <com/sun/star/uno/XInterface.hpp>
21 #include <com/sun/star/uno/Reference.hxx>
24 using namespace css::uno
;
28 class ScIndexEnumeration_DatabaseRangesEnumeration
: public CalcUnoApiTest
,
29 public apitest::XEnumeration
32 ScIndexEnumeration_DatabaseRangesEnumeration();
34 virtual uno::Reference
<uno::XInterface
> init() override
;
35 virtual void setUp() override
;
36 virtual void tearDown() override
;
38 CPPUNIT_TEST_SUITE(ScIndexEnumeration_DatabaseRangesEnumeration
);
41 CPPUNIT_TEST(testHasMoreElements
);
42 CPPUNIT_TEST(testNextElement
);
44 CPPUNIT_TEST_SUITE_END();
47 uno::Reference
<lang::XComponent
> m_xComponent
;
50 ScIndexEnumeration_DatabaseRangesEnumeration::ScIndexEnumeration_DatabaseRangesEnumeration()
51 : CalcUnoApiTest("/sc/qa/extras/testdocuments")
55 uno::Reference
<uno::XInterface
> ScIndexEnumeration_DatabaseRangesEnumeration::init()
57 uno::Reference
<sheet::XSpreadsheetDocument
> xDoc(m_xComponent
, uno::UNO_QUERY_THROW
);
58 CPPUNIT_ASSERT_MESSAGE("no calc document", xDoc
.is());
60 uno::Reference
<beans::XPropertySet
> xPropertySet(xDoc
, uno::UNO_QUERY_THROW
);
61 uno::Reference
<sheet::XDatabaseRanges
> xDR
;
62 CPPUNIT_ASSERT(xPropertySet
->getPropertyValue("DatabaseRanges") >>= xDR
);
63 xDR
->addNewByName("DatabaseRange", table::CellRangeAddress(0, 2, 4, 5, 6));
65 uno::Reference
<container::XEnumerationAccess
> xEA(xDR
, uno::UNO_QUERY_THROW
);
67 return xEA
->createEnumeration();
70 void ScIndexEnumeration_DatabaseRangesEnumeration::setUp()
72 CalcUnoApiTest::setUp();
73 m_xComponent
= loadFromDesktop("private:factory/scalc");
74 CPPUNIT_ASSERT_MESSAGE("no component", m_xComponent
.is());
77 void ScIndexEnumeration_DatabaseRangesEnumeration::tearDown()
79 closeDocument(m_xComponent
);
80 CalcUnoApiTest::tearDown();
83 CPPUNIT_TEST_SUITE_REGISTRATION(ScIndexEnumeration_DatabaseRangesEnumeration
);
85 } // namespace sc_apitest
87 CPPUNIT_PLUGIN_IMPLEMENT();
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */