mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
11 lines
195 B
C++
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();
|
||
|
}
|