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

19 lines
291 B
C++

#include <cxxtest/TestSuite.h>
//
// This test suite is used to test the root/part functionality of CxxTest.
//
class Part1 : public CxxTest::TestSuite
{
public:
void testSomething()
{
TS_ASSERT_THROWS_NOTHING(throwNothing());
}
void throwNothing()
{
}
};