如何将mock方法参数作为ON_CALL返回()动作参数?
模拟方法:
MOCK_METHOD1(foo, int(const std::string&))
测试:
TEST_F(Test, t) {
//I'm using parametrized tests, this is only for simplicity
std::map<std::string, int> results = {{"Apple", 1}};
ON_CALL(obj, foo(_))
.WillByDefault(
Return(results.at(argument_from_foo_method)));
}
答案 0 :(得分:0)
我发现,请使用Invoke
动作:
ON_CALL(obj, foo(_))
.WillByDefault(
Invoke([&](const std::string &s) -> int { return results.at(s); });