I am very new to Google Mock and to StackOverflow, sorry in advance if my question is not well posed.
I am trying to mock a templated method.
Here is the class containing the method to mock :
class myClass
{
public:
virtual ~myClass() {}
template<typename T>
void myMethod(T param);
}
How can I mock the method myMethod using Google Mock ?
Thanks in advance for all your answers.