generated from TDD-Templates/cmake_cpputest_template
13 lines
198 B
C++
13 lines
198 B
C++
|
#include "CppUTest/CommandLineTestRunner.h"
|
||
|
|
||
|
|
||
|
//ImportTestGroups
|
||
|
IMPORT_TEST_GROUP(simple_test);
|
||
|
|
||
|
//START: main
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
return RUN_ALL_TESTS(argc, argv);
|
||
|
}
|
||
|
//END: main
|