/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * 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 class TerminateTest final : public test::BootstrapFixture, public unotest::MacrosTest, public apitest::XComponent { public: void setUp() override; css::uno::Reference init() override; void triggerDesktopTerminate() override; CPPUNIT_TEST_SUITE(TerminateTest); CPPUNIT_TEST(testDisposedByDesktopTerminate); CPPUNIT_TEST_SUITE_END(); }; void TerminateTest::setUp() { test::BootstrapFixture::setUp(); mxDesktop.set( css::frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory()))); } css::uno::Reference TerminateTest::init() { auto const component = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument"); css::uno::Reference xTextDocument(component, css::uno::UNO_QUERY_THROW); css::uno::Reference xMSF(component, css::uno::UNO_QUERY_THROW); css::uno::Reference xText = xTextDocument->getText(); css::uno::Reference xCursor = xText->createTextCursor(); css::uno::Reference xTable( xMSF->createInstance("com.sun.star.text.TextTable"), css::uno::UNO_QUERY_THROW); xTable->initialize(4, 3); xText->insertTextContent(xCursor, xTable, false); CPPUNIT_ASSERT(xCursor.is()); return css::uno::Reference(xTable, css::uno::UNO_QUERY_THROW); } void TerminateTest::triggerDesktopTerminate() { mxDesktop->terminate(); } CPPUNIT_TEST_SUITE_REGISTRATION(TerminateTest); CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */