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

模拟服务器

开发平台:

C/C++

  1. // S3PTestAccount.cpp: implementation of the S3PTestAccount class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "S3PTestAccount.h"
  5. #include "S3PAccount.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. S3PTestAccount::~S3PTestAccount()
  10. {
  11. }
  12. void S3PTestAccount::testLogin()
  13. {
  14. S3PAccount account;
  15. DWORD dwSize;
  16. account.QueryGameserverList( "YangXiaodong", "yxd", NULL, dwSize );
  17. }
  18. void S3PTestAccount::setUp()
  19. {
  20. }
  21. Test* S3PTestAccount::suite()
  22. {
  23. TestSuite *testSuite = new TestSuite ("Test account Login");
  24. testSuite->addTest( new TestCaller <S3PTestAccount> ("testLogin", testLogin) );
  25.     
  26. return testSuite;
  27. }