mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-28 07:35:40 +03:00
17 lines
259 B
C++
17 lines
259 B
C++
#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;
|
|
}
|