mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
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()
|
|
{
|
|
}
|
|
};
|