testruns.h
1 //------------------------------------------------------------------------------
2 // testruns.h
3 //
4 // Copyright (C) 2010 "Zalewa" <zalewapl@gmail.com>
5 //------------------------------------------------------------------------------
6 #ifndef __TESTRUNS_H__
7 #define __TESTRUNS_H__
8 
9 #include "tests/testcore.h"
10 
14 class TestRuns
15 {
16  public:
17  static TestCore* pTestCore;
18 
19  static void callTests();
20 };
21 
22 #endif
Use this class to execute test runs.
Definition: testruns.h:14
Core for developer tests.
Definition: testcore.h:48