mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-01 09:24:55 +02:00
30 lines
428 B
C++
30 lines
428 B
C++
//
|
|
// TestResult.cpp
|
|
//
|
|
// $Id: //poco/1.4/CppUnit/src/TestResult.cpp#1 $
|
|
//
|
|
|
|
|
|
#include "Poco/CppUnit/TestResult.h"
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
// Destroys a test result
|
|
TestResult::~TestResult()
|
|
{
|
|
std::vector<TestFailure*>::iterator it;
|
|
|
|
for (it = _errors.begin(); it != _errors.end(); ++it)
|
|
delete *it;
|
|
|
|
for (it = _failures.begin(); it != _failures.end(); ++it)
|
|
delete *it;
|
|
|
|
delete _syncObject;
|
|
}
|
|
|
|
|
|
} // namespace CppUnit
|