mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
20 lines
385 B
Smarty
20 lines
385 B
Smarty
// -*- C++ -*-
|
|
# include <cxxtest/StdioPrinter.h>
|
|
# include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
if ( !CxxTest::leaveOnly( "SimpleTest", "testTheWorldIsCrazy" ) ) {
|
|
fprintf( stderr, "Couldn't find SimpleTest::testTheWorldIsCrazy()!?\n" );
|
|
return -1;
|
|
}
|
|
|
|
CxxTest::activateAllTests();
|
|
return CxxTest::StdioPrinter().run();
|
|
}
|
|
|
|
|
|
// The CxxTest "world"
|
|
<CxxTest world>
|
|
|