mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
217 B
C
12 lines
217 B
C
|
#include <cxxtest/TestSuite.h>
|
||
|
|
||
|
class NoEh : public CxxTest::TestSuite
|
||
|
{
|
||
|
public:
|
||
|
void testCxxTestCanCompileWithoutExceptionHandling()
|
||
|
{
|
||
|
TS_ASSERT_EQUALS(1, 2);
|
||
|
TS_ASSERT_EQUALS(2, 3);
|
||
|
}
|
||
|
};
|