Files
scummvm-cursorfix/test/cxxtest/sample/yes_no_runner.cpp
2026-02-02 04:50:13 +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();
}