mirror of
https://github.com/rehlds/rehlds.git
synced 2025-03-19 08:50:22 +03:00
17 lines
308 B
C++
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;
|
|
}
|