1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #include "test/unoapi_test.hxx"
12 #include <com/sun/star/util/XCloseable.hpp>
13 #include <com/sun/star/frame/Desktop.hpp>
14 #include <comphelper/processfactory.hxx>
17 using namespace css::uno
;
19 UnoApiTest::UnoApiTest(const OUString
& path
)
24 void UnoApiTest::setUp()
26 test::BootstrapFixture::setUp();
28 // This is a bit of a fudge, we do this to ensure that ScGlobals::ensure,
29 // which is a private symbol to us, gets called
31 getMultiServiceFactory()->createInstance(OUString("com.sun.star.comp.Calc.SpreadsheetDocument"));
32 CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xCalcComponent
.is());
33 mxDesktop
= com::sun::star::frame::Desktop::create( comphelper::getComponentContext(getMultiServiceFactory()) );
36 void UnoApiTest::tearDown()
38 uno::Reference
< lang::XComponent
>( m_xCalcComponent
, UNO_QUERY_THROW
)->dispose();
39 test::BootstrapFixture::tearDown();
42 void UnoApiTest::createFileURL(const OUString
& aFileBase
, OUString
& rFilePath
)
44 rFilePath
= getSrcRootURL() + m_aBaseString
+ "/" + aFileBase
;
47 void UnoApiTest::closeDocument( uno::Reference
< lang::XComponent
> xDocument
)
49 uno::Reference
< util::XCloseable
> xCloseable(xDocument
, UNO_QUERY_THROW
);
50 xCloseable
->close(false);
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */