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 <sal/config.h>
11 #include <test/bootstrapfixture.hxx>
12 #include <unotest/macros_test.hxx>
13 #include <com/sun/star/lang/XComponent.hpp>
14 #include <osl/file.hxx>
16 // basic uno api test class
18 class OOO_DLLPUBLIC_TEST UnoApiTest
: public test::BootstrapFixture
, public unotest::MacrosTest
21 UnoApiTest(const OUString
& path
);
23 void createFileURL(const OUString
& aFileBase
, OUString
& rFilePath
);
26 virtual void tearDown();
29 void closeDocument( css::uno::Reference
< css::lang::XComponent
> xDocument
);
33 css::uno::Reference
<css::uno::XInterface
> m_xCalcComponent
;
34 OUString m_aBaseString
;
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */