/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #include #include #include #include #include #include #include #include using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXTextFieldTypes. */ class SwXTextFieldTypes final : public UnoApiTest, public apitest::XElementAccess, public apitest::XEnumerationAccess, public apitest::XRefreshable { public: SwXTextFieldTypes() : UnoApiTest("") , XElementAccess(cppu::UnoType::get()) { } virtual void setUp() override { UnoApiTest::setUp(); mxDesktop.set(frame::Desktop::create(mxComponentContext)); mxComponent = loadFromDesktop("private:factory/swriter"); CPPUNIT_ASSERT(mxComponent.is()); } Reference init() override { component_ = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); Reference xTextDocument(component_, UNO_QUERY_THROW); Reference xTFS; try { xTFS = Reference(xTextDocument, UNO_QUERY_THROW); } catch (Exception&) { } return Reference(xTFS->getTextFields(), UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE(SwXTextFieldTypes); CPPUNIT_TEST(testGetElementType); CPPUNIT_TEST(testHasElements); CPPUNIT_TEST(testCreateEnumeration); CPPUNIT_TEST(testRefreshListener); CPPUNIT_TEST_SUITE_END(); private: Reference component_; }; CPPUNIT_TEST_SUITE_REGISTRATION(SwXTextFieldTypes); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */