mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
34 lines
611 B
C++
34 lines
611 B
C++
#ifndef UNITTEST_TEST_H
|
|
#define UNITTEST_TEST_H
|
|
|
|
#include "TestDetails.h"
|
|
|
|
namespace UnitTest {
|
|
|
|
class TestResults;
|
|
class TestList;
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
Test(char const* testName, char const* suiteName = "DefaultSuite", char const* filename = "", int lineNumber = 0);
|
|
virtual ~Test();
|
|
void Run(TestResults& testResults) const;
|
|
|
|
TestDetails const m_details;
|
|
Test* next;
|
|
mutable bool m_timeConstraintExempt;
|
|
|
|
static TestList& GetTestList();
|
|
|
|
private:
|
|
virtual void RunImpl(TestResults& testResults_) const;
|
|
|
|
Test(Test const&);
|
|
Test& operator =(Test const&);
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|