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/SwXAutoTextContainer.cxx | 77 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 sw/qa/api/SwXAutoTextContainer.cxx (limited to 'sw/qa/api/SwXAutoTextContainer.cxx') diff --git a/sw/qa/api/SwXAutoTextContainer.cxx b/sw/qa/api/SwXAutoTextContainer.cxx new file mode 100644 index 0000000000..1f1fc3df1d --- /dev/null +++ b/sw/qa/api/SwXAutoTextContainer.cxx @@ -0,0 +1,77 @@ +/* -*- 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 + +using namespace css; +using namespace css::uno; + +namespace +{ +/** + * Initial tests for SwXAutoTextContainer. + */ +class SwXAutoTextContainer final : public UnoApiTest, + public apitest::XElementAccess, + public apitest::XIndexAccess, + public apitest::XNameAccess +{ +public: + SwXAutoTextContainer() + : UnoApiTest("") + , XElementAccess(cppu::UnoType::get()) + , XIndexAccess(3) + , XNameAccess("crdbus50") + { + } + + virtual void setUp() override + { + UnoApiTest::setUp(); + mxDesktop.set(frame::Desktop::create(mxComponentContext)); + } + + Reference init() override + { + Reference xAutoTextContainer + = text::AutoTextContainer::create(comphelper::getProcessComponentContext()); + + Reference xNA(xAutoTextContainer, UNO_QUERY_THROW); + Sequence aNames = xNA->getElementNames(); + std::cout << aNames[0] << std::endl; + + return Reference(xAutoTextContainer, UNO_QUERY_THROW); + } + + CPPUNIT_TEST_SUITE(SwXAutoTextContainer); + CPPUNIT_TEST(testGetByName); + CPPUNIT_TEST(testGetElementNames); + CPPUNIT_TEST(testHasByName); + CPPUNIT_TEST(testGetCount); + CPPUNIT_TEST(testGetByIndex); + CPPUNIT_TEST(testGetElementType); + CPPUNIT_TEST(testHasElements); + CPPUNIT_TEST_SUITE_END(); +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(SwXAutoTextContainer); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3