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/calc_unoapi_test.hxx>
13 using namespace css::uno
;
15 CalcUnoApiTest::CalcUnoApiTest(const OUString
& path
)
20 void CalcUnoApiTest::setUp()
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
27 getMultiServiceFactory()->createInstance("com.sun.star.comp.Calc.SpreadsheetDocument");
28 CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xCalcComponent
.is());
31 void CalcUnoApiTest::tearDown()
33 uno::Reference
< lang::XComponent
>( m_xCalcComponent
, UNO_QUERY_THROW
)->dispose();
34 UnoApiTest::tearDown();
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */