17 #ifndef TEST_VISITOR_GUARD
18 #define TEST_VISITOR_GUARD
Represents a test case, which is usually created through a macro that defines a subclass.
Represents a collection of tests, be they individual tests or yet other collections of tests.
This class is a visitor for classes derived from Test according to the Visitor Pattern.
virtual bool visit(TestCase &testCase)
Visits a testCase and returns true if visiting of any other objects should continue after the testSui...
virtual bool visitLeave(TestSuite &)
Returns true if visiting of any other objects should continue after the testSuite has been visited.
virtual bool visitEnter(TestSuite &testSuite)
Returns true if the testSuite should be iterated through.