Files
FreeJ/tests/cxxtest/sample/yes_no_runner.cpp
Luca Bigliardi 313fc403e6 Test framework.
Add CxxTest files.
Compile and run tests with "make check" from automake.
A dumb test is provided, serious tests are coming.
2009-06-21 14:51:45 +01:00

12 lines
195 B
C++

//
// A sample program that uses class YesNoRunner to run all the tests
// and find out if all pass.
//
#include <cxxtest/YesNoRunner.h>
int main()
{
return CxxTest::YesNoRunner().run();
}