haiku/src/tests/UnitTesterHelper.h
Tyler Dauwalder d8575caf51 + Used to be UnitTester.*
+ Now gracefully handles situations where a suite and an
  individual test both have the same name.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@702 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-08-11 03:42:49 +00:00

19 lines
455 B
C++

#ifndef __unit_tester_helper_h__
#define __unit_tester_helper_h__
#include <TestShell.h>
#include <string>
class UnitTesterShell : public BTestShell {
public:
UnitTesterShell(const std::string &description = "", SyncObject *syncObject = 0);
protected:
virtual void PrintDescription(int argc, char *argv[]);
virtual void PrintValidArguments();
virtual void LoadDynamicSuites();
};
//extern UnitTesterShell shell;
#endif // __unit_tester_helper_h__