blob: 82f2710046798fb0c5aa49ec868c97b6e55a88fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|