Files
cpp-thirdparty/noarch/lib/py/cxxtest/test/EmptySuite.h
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

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");
}
};