2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-03-25 19:59:22 +03:00
s1lentq 7bd3d73b79 workflows/build.yml: add unittests for linux
CMakeLists.txt minor refactoring
2021-04-12 04:25:40 +07:00

11 lines
267 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[]);
};