mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-14 00:25:43 +01:00
Add CxxTest files. Compile and run tests with "make check" from automake. A dumb test is provided, serious tests are coming.
12 lines
195 B
C++
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();
|
|
}
|