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/beans/xpropertyset.hxx>
12 #include <test/sheet/spreadsheetdocumentsettings.hxx>
14 #include <com/sun/star/lang/XComponent.hpp>
15 #include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
16 #include <com/sun/star/uno/XInterface.hpp>
18 #include <com/sun/star/uno/Reference.hxx>
24 class ScSpreadsheetSettingsObj
: public CalcUnoApiTest
,
25 public apitest::SpreadsheetDocumentSettings
,
26 public apitest::XPropertySet
29 ScSpreadsheetSettingsObj();
31 virtual uno::Reference
<uno::XInterface
> init() override
;
32 virtual void setUp() override
;
33 virtual void tearDown() override
;
35 CPPUNIT_TEST_SUITE(ScSpreadsheetSettingsObj
);
37 // SpreadsheetDocumentSettings
38 CPPUNIT_TEST(testSpreadsheetDocumentSettingsProperties
);
41 CPPUNIT_TEST(testGetPropertySetInfo
);
42 CPPUNIT_TEST(testGetPropertyValue
);
43 CPPUNIT_TEST(testSetPropertyValue
);
44 CPPUNIT_TEST(testPropertyChangeListener
);
45 CPPUNIT_TEST(testVetoableChangeListener
);
47 CPPUNIT_TEST_SUITE_END();
50 uno::Reference
<lang::XComponent
> mxComponent
;
53 ScSpreadsheetSettingsObj::ScSpreadsheetSettingsObj()
54 : CalcUnoApiTest("/sc/qa/extras/testdocuments")
73 uno::Reference
<uno::XInterface
> ScSpreadsheetSettingsObj::init()
75 uno::Reference
<sheet::XSpreadsheetDocument
> xDoc(mxComponent
, uno::UNO_QUERY_THROW
);
79 void ScSpreadsheetSettingsObj::setUp()
81 CalcUnoApiTest::setUp();
82 // create a calc document
83 mxComponent
= loadFromDesktop("private:factory/scalc");
86 void ScSpreadsheetSettingsObj::tearDown()
88 closeDocument(mxComponent
);
89 CalcUnoApiTest::tearDown();
92 CPPUNIT_TEST_SUITE_REGISTRATION(ScSpreadsheetSettingsObj
);
94 } // namespace sc_apitest
96 CPPUNIT_PLUGIN_IMPLEMENT();
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */