Rev | Line | |
---|
[216] | 1 | #ifndef TEST_LAUNCHER_H |
---|
| 2 | #define TEST_LAUNCHER_H |
---|
| 3 | |
---|
| 4 | namespace CppTestHarness |
---|
| 5 | { |
---|
| 6 | class TestResults; |
---|
| 7 | class TestRegistry; |
---|
| 8 | |
---|
| 9 | class TestLauncher |
---|
| 10 | { |
---|
| 11 | public: |
---|
| 12 | virtual void Launch(TestResults& results_) const = 0; |
---|
| 13 | |
---|
| 14 | static TestLauncher** GetHeadAddr(); |
---|
| 15 | TestLauncher const* GetNext() const; |
---|
| 16 | |
---|
| 17 | protected: |
---|
| 18 | TestLauncher(TestLauncher** listHead); |
---|
| 19 | virtual ~TestLauncher(); |
---|
| 20 | |
---|
| 21 | private: |
---|
| 22 | TestLauncher const* m_next; |
---|
| 23 | |
---|
| 24 | // revoked |
---|
| 25 | TestLauncher(); |
---|
| 26 | TestLauncher(TestLauncher const&); |
---|
| 27 | TestLauncher& operator =(TestLauncher const&); |
---|
| 28 | }; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | #endif |
---|
| 32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.