d463afccb1
* Use printf() instead of the std::cout stuff. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39672 a95241bf-73f2-0310-859d-f6bbb57e9c96
28 lines
565 B
C++
28 lines
565 B
C++
/*
|
|
* Copyright 2002-2010, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef UNIT_TESTER_SHELL_H
|
|
#define UNIT_TESTER_SHELL_H
|
|
|
|
|
|
#include <TestShell.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
class UnitTesterShell : public BTestShell {
|
|
public:
|
|
UnitTesterShell(
|
|
const std::string &description = "",
|
|
SyncObject *syncObject = NULL);
|
|
|
|
protected:
|
|
virtual void PrintDescription(int argc, char *argv[]);
|
|
virtual void PrintValidArguments();
|
|
virtual void LoadDynamicSuites();
|
|
};
|
|
|
|
|
|
#endif // UNIT_TESTER_SHELL_H
|