xlnt/third-party/cxxtest/test/Part1.h

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()
{
}
};