FreeNOS
TestSuite.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Niek Linnenbank
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __LIBTEST_TESTSUITE_H
19#define __LIBTEST_TESTSUITE_H
20
21#include <Singleton.h>
22#include <List.h>
23
24class TestInstance;
25
37class TestSuite : public StrictSingleton<TestSuite>
38{
39 public:
40
44 TestSuite();
45
51 void addTest(TestInstance *test);
52
59
60 private:
61
64};
65
71#endif /* __LIBTEST_TESTSUITE_H */
Simple linked list template class.
Definition List.h:37
Singleton design pattern: only one instance is allowed.
Definition Singleton.h:40
Represents a test instance.
Maintains a list of test instances.
Definition TestSuite.h:38
void addTest(TestInstance *test)
Add a test.
Definition TestSuite.cpp:27
List< TestInstance * > * getTests()
Retrieve a list of all tests.
Definition TestSuite.cpp:32
List< TestInstance * > m_tests
List of TestInstances in the suite.
Definition TestSuite.h:63
TestSuite()
Class constructor.
Definition TestSuite.cpp:22