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

模拟服务器

开发平台:

C/C++

  1. // TestRunner.h: interface for the TestRunner class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TESTRUNNER_H__F8BE488A_9076_45BD_A028_667E82E40927__INCLUDED_)
  5. #define AFX_TESTRUNNER_H__F8BE488A_9076_45BD_A028_667E82E40927__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #pragma warning( disable : 4786 4800 4355 )
  10. #include <iostream>
  11. #include <vector>
  12. #include <string>
  13. using namespace std;
  14. #include "KStdAfx.h"
  15. #include "TextTestResult.h"
  16. class Test;
  17. typedef pair<string, Test *>           mapping;
  18. typedef vector<pair<string, Test *> >   mappings;
  19. class TestRunner  
  20. {
  21. protected:
  22.     bool                                m_wait;
  23.     vector<pair<string,Test *> >        m_mappings;
  24. public:
  25. TestRunner    () : m_wait (false) {}
  26.     ~TestRunner   ();
  27.     void        run           (string testCase);
  28.     void        addTest       (string name, Test *test)
  29.     { m_mappings.push_back (mapping (name, test)); }
  30. protected:
  31.     void        run (Test *test);
  32.     void        printBanner ();
  33. };
  34. #endif // !defined(AFX_TESTRUNNER_H__F8BE488A_9076_45BD_A028_667E82E40927__INCLUDED_)