mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-29 08:05:46 +03:00
11 lines
257 B
C++
11 lines
257 B
C++
#pragma once
|
|
|
|
class MainAdapter {
|
|
public:
|
|
int writeAllTestsInfoToFile(const char* fname);
|
|
int runTest(const char* groupName, const char* testName);
|
|
int runGroup(const char* groupName);
|
|
int runAllTests();
|
|
int testsEntryPoint(int argc, char* argv[]);
|
|
};
|