如何模拟返回auto_ptr的方法?

时间:2015-08-07 11:19:16

标签: c++ gmock

我想模拟一个返回auto_ptr的方法。

到目前为止,我做到了这一点,

class ClassAMock : public ClassA
{
public:

    MOCK_METHOD0(method, std::auto_ptr<MyClass>());
};

我收到此错误,

Error   78  error C2558: class 'std::auto_ptr<MyClass>' : no copy constructor available or copy constructor is declared 'explicit'  

帮我解决此问题。

0 个答案:

没有答案