mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 12:48:16 +00:00
3820593bb8
svn-id: r21488
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();
|
|
}
|