17#ifndef TEST_CASE_GUARD
18#define TEST_CASE_GUARD
42 virtual void run(
const char* nameOfTest,
bool printDots) = 0;
virtual bool accept(TestVisitor &visitor)
Makes the visitor visit this object as per the Visitor Pattern.
virtual void run(const char *nameOfTest, bool printDots)=0
Run the test and record the name of the test as __nameOfTest.
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.
Test(const string &name)
Construct a Test with the given name.