ReGameDLL_CS/regamedll/unittests/TestRunner.cpp

11 lines
189 B
C++
Raw Normal View History

2019-09-23 00:09:58 +03:00
#include "precompiled.h"
2021-04-12 17:51:51 +03:00
#include "cppunitlite/MainAdapter.h"
2019-09-23 00:09:58 +03:00
int main(int argc, char *argv[])
{
printf("TestRunner: main()\n");
2021-04-12 17:51:51 +03:00
MainAdapter a;
return a.testsEntryPoint(argc, argv);
2019-09-23 00:09:58 +03:00
}