#include <sal/config.h>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <cppunit/TestAssert.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>
#include <unotest/detail/unotestdllapi.hxx>
#include <unotest/directories.hxx>
Go to the source code of this file.
◆ CPPUNIT_TEST_FIXTURE
#define CPPUNIT_TEST_FIXTURE |
( |
|
TestClass, |
|
|
|
TestName |
|
) |
| |
Value: class TestName : public TestClass \
{ \
public: \
void TestBody(); \
CPPUNIT_TEST_SUITE(TestName); \
CPPUNIT_TEST(TestBody); \
CPPUNIT_TEST_SUITE_END(); \
}; \
CPPUNIT_TEST_SUITE_REGISTRATION(TestName); \
void TestName::TestBody()
Definition at line 27 of file bootstrapfixturebase.hxx.