blob: c32b94cd5c72559f2277f19d65d9dcb35825a9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//
// 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();
}
|