mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
25 lines
390 B
C++
25 lines
390 B
C++
// MyTestSuite6.h
|
|
#include <cxxtest/TestSuite.h>
|
|
|
|
class MyTestSuite6 : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
|
|
static MyTestSuite6* createSuite()
|
|
{
|
|
#ifdef _MSC_VER
|
|
return new MyTestSuite6();
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
static void destroySuite(MyTestSuite6* suite)
|
|
{ delete suite; }
|
|
|
|
void test_nothing()
|
|
{
|
|
TS_FAIL("Nothing to test");
|
|
}
|
|
};
|