www.pudn.com > 压力测试程序 .rar > MyCase1.cpp
// 演示用的测试用例类
#include "stdafx.h"
#include "StressCase.h"
#include "MyCase1.h"
IMPLEMENT_DYNCREATE(MyCase1, StressCase)
bool MyCase1::OneStep(CString& strErrorMessage)
{
// do something...
Sleep(1000);
return true;
}