Peano
Loading...
Searching...
No Matches
TestCase.cpp
Go to the documentation of this file.
2
3tarch::tests::TestCase::TestCase( const std::string& testCaseName ):
4 _testCaseName(testCaseName),
5 _errors(0),
6 _error(false) {
7}
8
10
12 return _errors;
13}
14
16 return _testCaseName;
17}
int getNumberOfErrors() const
Definition TestCase.cpp:11
virtual ~TestCase()
Destructor.
Definition TestCase.cpp:9
std::string getTestCaseName() const
Definition TestCase.cpp:15