bump product version to 5.0.4.1
[LibreOffice.git] / test / source / calc_unoapi_test.cxx
blob8d7e218d9cda5b8847ff517cb2b96bf0a12dc863
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #include <test/calc_unoapi_test.hxx>
12 using namespace css;
13 using namespace css::uno;
15 CalcUnoApiTest::CalcUnoApiTest(const OUString& path)
16 : UnoApiTest(path)
20 void CalcUnoApiTest::setUp()
22 UnoApiTest::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
26 m_xCalcComponent =
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: */