2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-03-19 08:50:22 +03:00
rehlds/rehlds/unittests/TestRunner.cpp
2015-06-28 21:15:11 +04:00

17 lines
308 B
C++

#include "precompiled.h"
#include "rehlds_tests_shared.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;
}