/* -*- 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 SwXFootnotes. */ class SwXFootnotes final : public UnoApiTest, public apitest::XElementAccess, public apitest::XIndexAccess { public: SwXFootnotes() : UnoApiTest(u""_ustr) , XElementAccess(cppu::UnoType::get()) , XIndexAccess(1) { } Reference init() override { loadFromURL(u"private:factory/swriter"_ustr); Reference xTextDocument(mxComponent, UNO_QUERY_THROW); Reference xMSF(mxComponent, UNO_QUERY_THROW); Reference xFootnote( xMSF->createInstance(u"com.sun.star.text.Footnote"_ustr), UNO_QUERY_THROW); Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); xText->insertTextContent(xCursor, xFootnote, false); Reference xSupplier(xTextDocument, UNO_QUERY_THROW); return Reference(xSupplier->getFootnotes(), UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE(SwXFootnotes); CPPUNIT_TEST(testGetElementType); CPPUNIT_TEST(testHasElements); CPPUNIT_TEST(testGetCount); CPPUNIT_TEST(testGetByIndex); CPPUNIT_TEST_SUITE_END(); }; CPPUNIT_TEST_SUITE_REGISTRATION(SwXFootnotes); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /collabora/cd-5.3-3.4'>distro/collabora/cd-5.3-3.4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-08-07Update config.{guess,sub} with latest versions and handle fallout of thatTor Lillqvist
2019-09-06Fixing '....'Andrea Gelmini
2019-05-13Update config.{guess,sub}Caolán McNamara
2018-01-20Update config.{guess,sub}Caolán McNamara