9#ifndef INCLUDED_UNOTEST_BOOTSTRAPFIXTUREBASE_HXX
10#define INCLUDED_UNOTEST_BOOTSTRAPFIXTUREBASE_HXX
14#include <com/sun/star/uno/XComponentContext.hpp>
15#include <com/sun/star/lang/XMultiServiceFactory.hpp>
16#include <com/sun/star/lang/XMultiComponentFactory.hpp>
18#include <cppunit/TestAssert.h>
19#include <cppunit/TestFixture.h>
20#include <cppunit/extensions/HelperMacros.h>
21#include <cppunit/plugin/TestPlugIn.h>
26#ifndef CPPUNIT_TEST_FIXTURE
27#define CPPUNIT_TEST_FIXTURE(TestClass, TestName) \
28 class TestName : public TestClass \
32 CPPUNIT_TEST_SUITE(TestName); \
33 CPPUNIT_TEST(TestBody); \
34 CPPUNIT_TEST_SUITE_END(); \
36 CPPUNIT_TEST_SUITE_REGISTRATION(TestName); \
37 void TestName::TestBody()
53 css::uno::Reference<css::uno::XComponentContext>
m_xContext;
54 css::uno::Reference<css::lang::XMultiServiceFactory>
m_xSFactory;
55 css::uno::Reference<css::lang::XMultiComponentFactory>
m_xFactory;
61 const css::uno::Reference<css::uno::XComponentContext>&
63 const css::uno::Reference<css::lang::XMultiServiceFactory>&
66 virtual void setUp()
override;
67 virtual void tearDown()
override;
Reference< XComponentContext > m_xContext
const css::uno::Reference< css::lang::XMultiServiceFactory > & getMultiServiceFactory() const
css::uno::Reference< css::lang::XMultiServiceFactory > m_xSFactory
css::uno::Reference< css::lang::XMultiComponentFactory > m_xFactory
const css::uno::Reference< css::uno::XComponentContext > & getComponentContext() const
css::uno::Reference< css::uno::XComponentContext > m_xContext
Directories m_directories
#define OOO_DLLPUBLIC_UNOTEST