/* -*- 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 #include using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXNumberingRules. */ class SwXNumberingRules final : public UnoApiTest, public apitest::XElementAccess, public apitest::XIndexAccess, public apitest::XPropertySet, public apitest::NumberingRules { public: SwXNumberingRules() : UnoApiTest("") , XElementAccess(cppu::UnoType>::get()) , XIndexAccess(10) { } virtual void setUp() override { UnoApiTest::setUp(); mxDesktop.set(frame::Desktop::create(mxComponentContext)); mxComponent = loadFromDesktop("private:factory/swriter"); CPPUNIT_ASSERT(mxComponent.is()); } Reference init() override { Reference xTextDocument(mxComponent, UNO_QUERY_THROW); Reference xIndexAccess; Reference xNumRules; Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); try { xText->insertString(xCursor, "The quick brown fox jumps over the lazy dog", false); xText->insertControlCharacter(xCursor, text::ControlCharacter::PARAGRAPH_BREAK, false); } catch (lang::IllegalArgumentException&) { } Reference xStyleFam(xTextDocument, UNO_QUERY_THROW); try { Reference xStyleFamNames = xStyleFam->getStyleFamilies(); Reference xNumStyles( xStyleFamNames->getByName("NumberingStyles"), UNO_QUERY_THROW); xIndexAccess = Reference(xNumStyles, UNO_QUERY_THROW); } catch (lang::WrappedTargetException&) { } catch (container::NoSuchElementException&) { } catch (lang::IllegalArgumentException&) { } try { Reference xPropSet(xIndexAccess->getByIndex(0), UNO_QUERY_THROW); xNumRules = Reference( xPropSet->getPropertyValue("NumberingRules"), UNO_QUERY_THROW); } catch (lang::WrappedTargetException&) { } catch (lang::IndexOutOfBoundsException&) { } catch (beans::UnknownPropertyException&) { } catch (lang::IllegalArgumentException&) { } return Reference(xNumRules, UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE(SwXNumberingRules); CPPUNIT_TEST(testGetElementType); CPPUNIT_TEST(testHasElements); CPPUNIT_TEST(testGetCount); CPPUNIT_TEST(testGetByIndex); CPPUNIT_TEST(testGetPropertySetInfo); CPPUNIT_TEST(testSetPropertyValue); CPPUNIT_TEST(testGetPropertyValue); CPPUNIT_TEST(testPropertyChangeListener); CPPUNIT_TEST(testVetoableChangeListener); CPPUNIT_TEST(testNumberingRulesProperties); CPPUNIT_TEST_SUITE_END(); }; CPPUNIT_TEST_SUITE_REGISTRATION(SwXNumberingRules); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */