haiku/src/tests/UnitTester.h
Axel Dörfler d463afccb1 * Build fix for GCC4.
* Use printf() instead of the std::cout stuff.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39672 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-11-29 18:05:32 +00:00

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