51Testing软件测试论坛
标题:
解依赖技术/AdaptParameter参数适配 求助
[打印本页]
作者:
hsxu1218
时间:
2011-9-9 09:58
标题:
解依赖技术/AdaptParameter参数适配 求助
请问,有没有人做过C/C++ 单元测试中的参数适配。
如果知道的话,能否举个例子。网上这些资料很少,都是些概念性的东西。
作者:
hsxu1218
时间:
2011-9-9 10:49
下面是一个例子,这个例子应怎么测试呢?
有一个第三方类 CRequest, 我们的一个类 CUserAuthentication 依赖了它, 会用到 CRequest 里的很多函数.
需要测试 CUserAuthentication 是否能对用户进行认证.
#define PASSWORD = "123456";
class CAuthentication
{
public:
bool Authenticate(CRequest& req)
{
if(0== strcmp(PASSWORD,req.GetPassword())
{
return true;
}
return false;
}
}
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2