gpt4 book ai didi

c++ - 模拟对象 C++

转载 作者:行者123 更新时间:2023-11-28 02:56:51 24 4
gpt4 key购买 nike

我正在阅读有关 TDD 的文章,想知道是否可以在不使用额外的测试库(如 easyMock 或类似的东西)的情况下编写任何模拟对象。

例如我有代码:

class Person
{
int age;
int add ( int x) { return this.age + x }
}

如何编写模拟对象来测试上面的代码?

最佳答案

您不会使用该类的模拟来测试这样的类。您测试接口(interface)。事实上,您的代码看起来可能是一个用于测试其他代码的模拟对象。

// defined in code that is being tested
class Person {
virtual int add(int) = 0;
}
void foo(const Person& bar) {
// use person somehow
}

要测试上述接口(interface),您可以创建一个模拟对象。该对象没有实际实现可能具有的要求。例如,虽然真正的实现可能需要数据库连接,但模拟对象不需要。

class Mock: public Person {
int add(int x) {
// do something less complex than real implementation would
return x;
}
}

Mock test;
foo(test);

如果你想测试模板函数,就没有必要使用继承。

template<class T>
void foo(T bar) {
// Code that uses T.add()
}

要像这样测试接口(interface),你可以像这样定义模拟对象

class Mock {
int add(int x) {
// do something less complex than real implementation would
return x;
}
}

关于c++ - 模拟对象 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21786468/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com