模板模拟类中的MOCK_METHOD()定义缺少'typename'

时间:2013-04-26 20:18:30

标签: c++ gmock

我有一个gmock的编译器错误问题和一个模板化的模拟类,它应该用作派生(具体)模拟类的基础。

目的是测试框架支持的回调方法,但框架基类依赖于最终实现(简而言之,它是一个注入静态接口声明的CRTP模式样式框架) -

我正在尝试勾画出我的内容(请不要在第一次尝试时依赖于可编译的代码):

这是依赖于Context模板参数的框架钩子接​​口定义,框架基类本身将其作为非多态调用处理,并提供默认实现:

template<class Context>
class IFrameworkHooks
{
public:
    virtual void funcImpl(Context* context) = 0;
    virtual ~IFrameworkHooks() {}
};

现在我想实现一个实现IFrameWorkHooks<>接口的模拟类:

template<class Context, class InnerInterface>
class MyTemplateMock
: public FrameworkBaseClass<MyTemplateMock<Context,InnerInterface>,Context,InnerInterface>
, public IFrameworkHooks<Context>
{
public:
    // Compiler error here:
    MOCK_METHOD1(funcImpl, void (Context* context));
    virtual ~MyTemplateMock() {}

protected:
    MyTemplateMock()
    {
        // Compiler error here:
        ON_CALL(*this, funcImpl(_))
            .WillByDefault(Invoke(this, &MyTemplateMock<Context,InnerInterface>::funcImplCall));
    }

    void funcImplCall(Context* context)
    {
    }

};

我收到的编译错误是:

error: need ‘typename’ before ‘testing::internal::Function<void(Context*)>::Result’ because ‘testing::internal::Function<void(Context*)>’ is a dependent scope
error: type/value mismatch at argument 1 in template parameter list for ‘template<class T> class testing::Matcher’
error:   expected a type, got ‘testing::internal::Function<void(Context*)>::Argument1’

是否有可能以某种方式将ON_CALL()宏中使用的gmock Matcher专门用于模板参数?或者我错过了s.th.别的??

1 个答案:

答案 0 :(得分:5)

我认为您需要附加_T的gmock宏的模板版本:

MOCK_METHOD1_T(funcImpl, void (Context* context));

有关详细信息,请参阅the docs中标题为“模拟类模板”的部分。