I am using gmock for unit testing C++ code. I am not using the gtest framework. I am using visual studio 2008’s built-in testing framework.
Now my problem is that I have to manually write mock classes for a real class to unit test. For example if I have A class with 5 functions then I have to write MockAClass with 5 functions. Is there any way that these classes are automatically generated.
class AClass
{
public:
virtual int AFunction()
{
return 5;
}
virtual int AFunctionWithArguments(int x)
{
return x;
}
class MockAClass : public AClass
{
public:
MOCK_METHOD0(AFucntion, int());
MOCK_METHOD1(AFunctionWithArgument, int(int x));
};
There is a tool bundled with the google mock project that will help you do this. However I think the tool requires python to be installed, and I don’t know how well it works in a windows environment. I’ve also found that the generated files sometimes need a little tweak to work perfectly.
Here’s the info from the docs:
Here is new localization of this script.