mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-08 13:05:33 +03:00
7891b6196a
Implemented name->index map for sv.model_precache[] Fixed CPPUnitLite tests runner Source code optimizations for optimal usage of precompiled headers on linux
11 lines
269 B
C++
11 lines
269 B
C++
#pragma once
|
|
|
|
class GradleAdapter {
|
|
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[]);
|
|
};
|