/* -*- 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 #include #include #include #include using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXFootnoteText. */ class SwXFootnoteText final : public test::BootstrapFixture, public unotest::MacrosTest, public apitest::XElementAccess, public apitest::XSimpleText, public apitest::XTextRange, public apitest::XText, public apitest::XEnumerationAccess, public apitest::XTextRangeCompare { public: SwXFootnoteText(); virtual void setUp() override; void tearDown() override; Reference init() override; Reference getTextContent() override { return mxTextContent; }; CPPUNIT_TEST_SUITE(SwXFootnoteText); CPPUNIT_TEST(testGetElementType); CPPUNIT_TEST(testHasElements); CPPUNIT_TEST(testCreateTextCursor); CPPUNIT_TEST(testCreateTextCursorByRange); CPPUNIT_TEST(testInsertString); CPPUNIT_TEST(testInsertControlCharacter); CPPUNIT_TEST(testGetEnd); CPPUNIT_TEST(testGetSetString); CPPUNIT_TEST(testGetStart); CPPUNIT_TEST(testGetText); // CPPUNIT_TEST(testInsertRemoveTextContent); CPPUNIT_TEST(testCreateEnumeration); CPPUNIT_TEST(testCompareRegionStarts); CPPUNIT_TEST(testCompareRegionEnds); CPPUNIT_TEST_SUITE_END(); private: Reference component_; Reference mxTextContent; }; SwXFootnoteText::SwXFootnoteText() : XElementAccess(cppu::UnoType::get()) { } void SwXFootnoteText::setUp() { test::BootstrapFixture::setUp(); mxDesktop.set( frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); } void SwXFootnoteText::tearDown() { if (component_.is()) component_->dispose(); test::BootstrapFixture::tearDown(); } Reference SwXFootnoteText::init() { component_ = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); Reference xTextDocument(component_, UNO_QUERY_THROW); Reference xMSF(component_, UNO_QUERY_THROW); Reference xFootnote(xMSF->createInstance("com.sun.star.text.Footnote"), UNO_QUERY_THROW); Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); xText->insertTextContent(xCursor, xFootnote, false); Reference xFootText(xFootnote, UNO_QUERY_THROW); xFootText->setString("SwXFootnoteText"); mxTextContent = Reference( xMSF->createInstance("com.sun.star.text.Footnote"), UNO_QUERY_THROW); return Reference(xFootText->getText(), UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE_REGISTRATION(SwXFootnoteText); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */