使用gmock返回模拟方法参数

时间:2018-01-11 23:52:50

标签: c++ unit-testing googletest gmock

如何将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)));
}

1 个答案:

答案 0 :(得分:0)

我发现,请使用Invoke动作:

ON_CALL(obj, foo(_))
        .WillByDefault(
            Invoke([&](const std::string &s) -> int { return results.at(s); });