mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-02 17:50:53 +02:00
66 lines
954 B
C++
66 lines
954 B
C++
//
|
|
// Test.h
|
|
//
|
|
// $Id: //poco/1.2/CppUnit/include/CppUnit/Test.h#1 $
|
|
//
|
|
|
|
|
|
#ifndef CppUnit_Test_INCLUDED
|
|
#define CppUnit_Test_INCLUDED
|
|
|
|
|
|
#include "CppUnit/CppUnit.h"
|
|
#include <string>
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
class TestResult;
|
|
|
|
|
|
/*
|
|
* A Test can be run and collect its results.
|
|
* See TestResult.
|
|
*
|
|
*/
|
|
class CppUnit_API Test
|
|
{
|
|
public:
|
|
virtual ~Test() = 0;
|
|
virtual void run(TestResult* result) = 0;
|
|
virtual int countTestCases() = 0;
|
|
virtual std::string toString() = 0;
|
|
};
|
|
|
|
|
|
inline Test::~Test()
|
|
{
|
|
}
|
|
|
|
|
|
// Runs a test and collects its result in a TestResult instance.
|
|
inline void Test::run(TestResult *result)
|
|
{
|
|
}
|
|
|
|
|
|
// Counts the number of test cases that will be run by this test.
|
|
inline int Test::countTestCases()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
// Returns the name of the test instance.
|
|
inline std::string Test::toString()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
|
|
} // namespace CppUnit
|
|
|
|
|
|
#endif // CppUnit_Test_INCLUDED
|