From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sw/qa/api/SwXTextTable.cxx | 86 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 sw/qa/api/SwXTextTable.cxx (limited to 'sw/qa/api/SwXTextTable.cxx') diff --git a/sw/qa/api/SwXTextTable.cxx b/sw/qa/api/SwXTextTable.cxx new file mode 100644 index 000000000..229583ebc --- /dev/null +++ b/sw/qa/api/SwXTextTable.cxx @@ -0,0 +1,86 @@ +/* -*- 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 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: */ -- cgit v1.2.3