/[escript]/trunk/tools/CppUnitTest/src/TestResult.cpp
ViewVC logotype

Contents of /trunk/tools/CppUnitTest/src/TestResult.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 155 - (show annotations)
Wed Nov 9 02:02:19 2005 UTC (17 years, 4 months ago) by jgs
File size: 364 byte(s)
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 }

Properties

Name Value
svn:eol-style native
svn:executable *
svn:keywords Author Date Id Revision

  ViewVC Help
Powered by ViewVC 1.1.26