5fdbbf2ba5
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14793 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
450 B
C++
19 lines
450 B
C++
#ifndef __unit_tester_helper_h__
|
|
#define __unit_tester_helper_h__
|
|
|
|
#include <TestShell.h>
|
|
#include <string>
|
|
|
|
class UnitTesterShell : public BTestShell {
|
|
public:
|
|
UnitTesterShell(const 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__
|