Files
cpp-thirdparty/noarch/lib/py/cxxtest/sample/yes_no_runner.cpp
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

11 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();
}