mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
17 lines
354 B
C
17 lines
354 B
C
|
#include <cxxtest/TestSuite.h>
|
||
|
|
||
|
class EmptySuite : public CxxTest::TestSuite
|
||
|
{
|
||
|
public:
|
||
|
static EmptySuite *createSuite() { return new EmptySuite(); }
|
||
|
static void destroySuite(EmptySuite *suite) { delete suite; }
|
||
|
|
||
|
void setUp() {}
|
||
|
void tearDown() {}
|
||
|
|
||
|
void thisSuiteHasNoTests()
|
||
|
{
|
||
|
TS_FAIL("This suite has no tests");
|
||
|
}
|
||
|
};
|