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

模拟服务器

开发平台:

C/C++

  1. // S3PTestCard.h: interface for the S3PTestCard class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_S3PTESTCARD_H__1AD6EB59_D5AC_4D2C_8C50_C7BD0F4168D2__INCLUDED_)
  5. #define AFX_S3PTESTCARD_H__1AD6EB59_D5AC_4D2C_8C50_C7BD0F4168D2__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "TestCase.h"
  10. #include "TestSuite.h"
  11. #include "TestCaller.h"
  12. #include <string>
  13. class S3PTestCard : public TestCase  
  14. {
  15. public:
  16. S3PTestCard(std::string name) : TestCase (name) {};
  17. virtual ~S3PTestCard();
  18. void setUp ();
  19. static Test *suite ();
  20. protected:
  21. void testCardInit();
  22. void testCardSetInfo();
  23. void testRemove();
  24. void testGetCardList();
  25. };
  26. #endif // !defined(AFX_S3PTESTCARD_H__1AD6EB59_D5AC_4D2C_8C50_C7BD0F4168D2__INCLUDED_)