27 return visitor.
visit(*
this);
virtual bool accept(TestVisitor &visitor)
Makes the visitor visit this object as per the Visitor Pattern.
TestCase(const string &name)
Construct a test case with the given name.
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...
This class represents a test or a suite of tests according to the Composite Pattern.