ReGameDLL_CS/regamedll/unittests/TestRunner.cpp

16 lines
274 B
C++
Raw Normal View History

2015-06-30 12:46:07 +03:00
#include "precompiled.h"
#include "cppunitlite/GradleAdapter.h"
int main(int argc, char* argv[]) {
printf("TestRunner: main()\n");
GradleAdapter a;
int res = a.testsEntryPoint(argc, argv);
#ifdef _BUILD_FROM_IDE
system("PAUSE");
#endif
return res;
}