TestResult.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #include "TestResult.h"
  2. // Destroys a test result
  3. TestResult::~TestResult ()
  4. {
  5.     std::vector<TestFailure *>::iterator it;
  6.     for (it = m_errors.begin (); it != m_errors.end (); ++it)
  7.         delete *it;
  8.     for (it = m_failures.begin (); it != m_failures.end (); ++it)
  9.         delete *it;
  10.     delete m_syncObject;
  11. }