mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
15 lines
324 B
Smarty
15 lines
324 B
Smarty
|
#define CXXTEST_HAVE_EH
|
||
|
#define CXXTEST_ABORT_TEST_ON_FAIL
|
||
|
#include <cxxtest/ErrorPrinter.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout << "Starting test runner" << std::endl;
|
||
|
int status = CxxTest::ErrorPrinter().run();
|
||
|
std::cout << "Stopping test runner" << std::endl;
|
||
|
return status;
|
||
|
}
|
||
|
|
||
|
// The CxxTest "world"
|
||
|
<CxxTest world>
|