Parent Directory
|
Revision Log
move all directories from trunk/esys2 into trunk and remove esys2
1 | #include "CppUnitTest/TestResult.h" |
2 | |
3 | USING_NAMESPACE_CPPUNITTEST |
4 | |
5 | // Destroys a test result |
6 | TestResult::~TestResult () |
7 | { |
8 | std::vector<TestFailure *>::iterator it; |
9 | |
10 | for (it = m_errors.begin (); it != m_errors.end (); ++it) |
11 | delete *it; |
12 | |
13 | for (it = m_failures.begin (); it != m_failures.end (); ++it) |
14 | delete *it; |
15 | |
16 | delete m_syncObject; |
17 | } |
Name | Value |
---|---|
svn:eol-style | native |
svn:executable | * |
svn:keywords | Author Date Id Revision |
ViewVC Help | |
Powered by ViewVC 1.1.26 |