Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : */
9 :
10 : #include <test/calc_unoapi_test.hxx>
11 :
12 : using namespace css;
13 : using namespace css::uno;
14 :
15 0 : CalcUnoApiTest::CalcUnoApiTest(const OUString& path)
16 0 : : UnoApiTest(path)
17 : {
18 0 : }
19 :
20 0 : void CalcUnoApiTest::setUp()
21 : {
22 0 : UnoApiTest::setUp();
23 :
24 : // This is a bit of a fudge, we do this to ensure that ScGlobals::ensure,
25 : // which is a private symbol to us, gets called
26 0 : m_xCalcComponent =
27 0 : getMultiServiceFactory()->createInstance("com.sun.star.comp.Calc.SpreadsheetDocument");
28 0 : CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xCalcComponent.is());
29 0 : }
30 :
31 0 : void CalcUnoApiTest::tearDown()
32 : {
33 0 : uno::Reference< lang::XComponent >( m_xCalcComponent, UNO_QUERY_THROW )->dispose();
34 0 : UnoApiTest::tearDown();
35 0 : }
36 :
37 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|