18 lines
368 B
C++
18 lines
368 B
C++
#ifndef CPPUNIT_TEXTTESTRUNNER_H
|
|||
|
|
#define CPPUNIT_TEXTTESTRUNNER_H
|
||
|
|
|
||
|
|
#include <cppunit/ui/text/TestRunner.h>
|
||
|
|
|
||
|
|
namespace CppUnit {
|
||
|
|
|
||
|
|
/*!
|
||
|
|
* \brief A text mode test runner.
|
||
|
|
* \ingroup ExecutingTest
|
||
|
|
* \deprecated Use CppUnit::TextUi::TestRunner instead.
|
||
|
|
*/
|
||
|
|
typedef CppUnit::TextUi::TestRunner TextTestRunner;
|
||
|
|
|
||
|
|
} // namespace CppUnit
|
||
|
|
|
||
|
|
#endif // CPPUNIT_TEXTTESTRUNNER_H
|