解依赖技术/AdaptParameter参数适配 求助
请问,有没有人做过C/C++ 单元测试中的参数适配。如果知道的话,能否举个例子。网上这些资料很少,都是些概念性的东西。 下面是一个例子,这个例子应怎么测试呢?
有一个第三方类 CRequest, 我们的一个类 CUserAuthentication 依赖了它, 会用到 CRequest 里的很多函数.
需要测试 CUserAuthentication 是否能对用户进行认证.
#define PASSWORD = "123456";
class CAuthentication
{
public:
bool Authenticate(CRequest& req)
{
if(0== strcmp(PASSWORD,req.GetPassword())
{
return true;
}
return false;
}
}
页:
[1]