/* -*- 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 using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXTextEmbeddedObjects. */ class SwXTextEmbeddedObjects final : public UnoApiTest, public apitest::XElementAccess, public apitest::XIndexAccess, public apitest::XNameAccess { public: SwXTextEmbeddedObjects() : UnoApiTest("") , XElementAccess(cppu::UnoType::get()) , XIndexAccess(1) , XNameAccess("Object1") { } 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(); try { Reference xTextContent( xMSF->createInstance("com.sun.star.text.TextEmbeddedObject"), UNO_QUERY_THROW); Reference xPropertySet(xTextContent, UNO_QUERY_THROW); xPropertySet->setPropertyValue("CLSID", Any(OUString("12dcae26-281f-416f-a234-c3086127382e"))); xText->insertTextContent(xCursor, xTextContent, false); } catch (Exception&) { } Reference xTEOSupp(xTextDocument, UNO_QUERY_THROW); return Reference(xTEOSupp->getEmbeddedObjects(), UNO_QUERY_THROW); } CPPUNIT_TEST_SUITE(SwXTextEmbeddedObjects); 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(SwXTextEmbeddedObjects); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */