From 267c6f2ac71f92999e969232431ba04678e7437e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:54:39 +0200 Subject: Adding upstream version 4:24.2.0. Signed-off-by: Daniel Baumann --- sw/qa/api/SwXFootnoteProperties.cxx | 96 +++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 sw/qa/api/SwXFootnoteProperties.cxx (limited to 'sw/qa/api/SwXFootnoteProperties.cxx') diff --git a/sw/qa/api/SwXFootnoteProperties.cxx b/sw/qa/api/SwXFootnoteProperties.cxx new file mode 100644 index 0000000000..e716181a55 --- /dev/null +++ b/sw/qa/api/SwXFootnoteProperties.cxx @@ -0,0 +1,96 @@ +/* -*- 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 SwXFootnoteProperties. + */ +class SwXFootnoteProperties final : public test::BootstrapFixture, + public unotest::MacrosTest, + public apitest::XElementAccess, + public apitest::XIndexAccess +{ +public: + SwXFootnoteProperties(); + virtual void setUp() override; + void tearDown() override; + + Reference init() override; + + CPPUNIT_TEST_SUITE(SwXFootnoteProperties); + CPPUNIT_TEST_SUITE_END(); + +private: + uno::Reference component_; +}; + +SwXFootnoteProperties::SwXFootnoteProperties() + : XElementAccess(cppu::UnoType::get()) + , XIndexAccess(3) +{ +} + +void SwXFootnoteProperties::setUp() +{ + test::BootstrapFixture::setUp(); + mxDesktop.set( + frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); +} + +void SwXFootnoteProperties::tearDown() +{ + if (component_.is()) + component_->dispose(); + + test::BootstrapFixture::tearDown(); +} + +Reference SwXFootnoteProperties::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 xFootnotesSupplier(xTextDocument, UNO_QUERY_THROW); + + return Reference(xFootnotesSupplier->getFootnoteSettings(), UNO_QUERY_THROW); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXFootnoteProperties); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3