Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
autotestconfighandler.c
Go to the documentation of this file.
2{
4
5 static bool LoadData(string path)
6 {
7 string errorMessage;
8 if (!JsonFileLoader<AutotestConfigJson>.LoadFile(path, m_Data, errorMessage))
9 {
10 AutoTestFixture.LogRPT(errorMessage);
11 return false;
12 }
13
14 return true;
15 }
16
17 static set<string> GetSuites()
18 {
19 return m_Data.TestSuites;
20 }
21}
static void LogRPT(string message)
static bool LoadData(string path)
static ref AutotestConfigJson m_Data
static set< string > GetSuites()