yes_no_runner.cpp 195 字节
Newer Older
W
wangguibao 已提交
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();
}