19 lines
291 B
C++
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()
|
|
{
|
|
}
|
|
};
|