Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
autotestconfighandler.c
Go to the documentation of this file.
2{
3 static ref AutotestConfigJson m_Data = new AutotestConfigJson();
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}