1 #ifndef __unit_tester_helper_h__ 2 #define __unit_tester_helper_h__ 3 4 #include <TestShell.h> 5 #include <string> 6 7 class UnitTesterShell : public BTestShell { 8 public: 9 UnitTesterShell(const string &description = "", SyncObject *syncObject = 0); 10 protected: 11 virtual void PrintDescription(int argc, char *argv[]); 12 virtual void PrintValidArguments(); 13 virtual void LoadDynamicSuites(); 14 }; 15 16 //extern UnitTesterShell shell; 17 18 #endif // __unit_tester_helper_h__ 19