/* -*- 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 SwXParagraphEnumeration. */ class SwXParagraphEnumeration final : public UnoApiTest, public apitest::XEnumeration { public: SwXParagraphEnumeration() : UnoApiTest("") { } 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 xMSF(mxComponent, UNO_QUERY_THROW); Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); for (int i = 0; i < 5; i++) { try { xText->insertString(xCursor, "The quick brown fox jumps over the lazy dog", false); xText->insertControlCharacter(xCursor, text::ControlCharacter::LINE_BREAK, false); xText->insertString(xCursor, "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG", false); xText->insertControlCharacter(xCursor, text::ControlCharacter::LINE_BREAK, false); } catch (lang::IllegalArgumentException&) { } try { xText->insertControlCharacter(xCursor, text::ControlCharacter::PARAGRAPH_BREAK, false); } catch (lang::IllegalArgumentException&) { } } Reference xEnumAccess(xText, UNO_QUERY_THROW); Reference xEnum = xEnumAccess->createEnumeration(); return Reference(xEnum, UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE(SwXParagraphEnumeration); CPPUNIT_TEST(testHasMoreElements); CPPUNIT_TEST(testNextElement); CPPUNIT_TEST_SUITE_END(); }; CPPUNIT_TEST_SUITE_REGISTRATION(SwXParagraphEnumeration); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */