I am using gmock for unit testing c++ code. I am not using gtest frameowkr. I am using built in visual studio 2008 testing framework.
now 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));
};