Simple linked list template class.
void append(T t)
Insert an item at the end of the list.
Singleton design pattern: only one instance is allowed.
Represents a test instance.
Maintains a list of test instances.
void addTest(TestInstance *test)
Add a test.
List< TestInstance * > * getTests()
Retrieve a list of all tests.
List< TestInstance * > m_tests
List of TestInstances in the suite.
TestSuite()
Class constructor.