00001 #ifndef ZIPIOS_TESTCASE_H 00002 #define ZIPIOS_TESTCASE_H 00003 00004 namespace zipios { 00005 00006 class TestCase { 00007 public: 00008 virtual void runTests() = 0; 00009 00010 }; 00011 00012 } // namespace 00013 00014 #endif