]> git.tdb.fi Git - libs/test.git/blob - source/runner.h
Initial commit
[libs/test.git] / source / runner.h
1 #ifndef MSP_TEST_RUNNER_H_
2 #define MSP_TEST_RUNNER_H_
3
4 #include <list>
5 #include <string>
6 #include <msp/core/application.h>
7
8 namespace Msp {
9 namespace Test {
10
11 class Runner: public RegisteredApplication<Runner>
12 {
13 private:
14         bool verbose;
15         bool show_list;
16         std::list<std::string> tests;
17
18 public:
19         Runner(int, char **);
20
21         virtual int main();
22 };
23
24 } // namespace Test
25 } // namespace Msp
26
27 #endif