mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
20 lines
351 B
C++
20 lines
351 B
C++
#include <cxxtest/TestSuite.h>
|
|
|
|
//
|
|
// This is a test suite which doesn't use exception handling.
|
|
// It is used to verify --abort-on-fail + --have-eh
|
|
//
|
|
|
|
class AborterNoThrow : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
void testFailures()
|
|
{
|
|
TS_FAIL(1);
|
|
TS_FAIL(2);
|
|
TS_FAIL(3);
|
|
TS_FAIL(4);
|
|
TS_FAIL(5);
|
|
}
|
|
};
|