/* -*- 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 #include using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXTextTable. */ struct SwXTextTable final : public test::BootstrapFixture, public unotest::MacrosTest, public apitest::XComponent { virtual void setUp() override; void tearDown() override; Reference init() override; void triggerDesktopTerminate() override; CPPUNIT_TEST_SUITE(SwXTextTable); CPPUNIT_TEST(testAddEventListener); CPPUNIT_TEST(testRemoveEventListener); CPPUNIT_TEST_SUITE_END(); private: css::uno::Reference component_; }; void SwXTextTable::setUp() { test::BootstrapFixture::setUp(); mxDesktop.set( frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); } void SwXTextTable::tearDown() { if (component_.is()) { component_->dispose(); } } void SwXTextTable::triggerDesktopTerminate() { mxDesktop->terminate(); } Reference SwXTextTable::init() { component_ = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); Reference xTextDocument(component_, UNO_QUERY_THROW); Reference xMSF(component_, UNO_QUERY_THROW); Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); Reference xTable(xMSF->createInstance("com.sun.star.text.TextTable"), UNO_QUERY_THROW); xTable->initialize(4, 3); xText->insertTextContent(xCursor, xTable, false); CPPUNIT_ASSERT(xCursor.is()); return Reference(xTable, UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE_REGISTRATION(SwXTextTable); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */