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));
};
link|improve this question

45% accept rate
feedback

2 Answers

up vote 4 down vote accepted

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 dont know how well it works in a windows environment. I've alos found thet the generated files sometimes need a little tweak to work perfectly.

Here's the info from the docs:

Tip: If even this is too much work for you, you'll find the gmock_gen.py tool in Google Mock's scripts/generator/ directory (courtesy of the cppclean project) useful. This command-line tool requires that you have Python 2.4 installed. You give it a C++ file and the name of an abstract class defined in it, and it will print the definition of the mock class for you. Due to the complexity of the C++ language, this script may not always work, but it can be quite handy when it does. For more details, read the user documentation.

link|improve this answer
thanks, i try to use this and hope it works, – fhnaseer Feb 13 at 11:34
its working. thanks. – fhnaseer Feb 13 at 12:32
feedback

Disclaimer: I used to work at Typemock

Have you considered using another tool?
Typemock has a tool called Isolator++ that do not need you to write "mocking classes".

TEST_F(IsolatorTests, SomeTest) 
{
      AClass* fakeclass = FAKE(AClass);
      WHEN_CALLED(fakeclass->AFunction()).Return(10);

      ASSERT_EQ(10, fakeclass.AFunction()); 
}

You can learn more about it at this about page

link|improve this answer
i have read about isolator++. but that is not free. you have to get license for that. – fhnaseer Feb 13 at 7:27
Yes - unfortunately they want money for their hard work ;) – Dror Helper Feb 13 at 7:39
1  
@DrorHelper Probably worth a disclaimer that you used to work for Typemock. (Not that that makes it a bad product etc, but its good to disclose such potential sources of bias). – Michael Anderson Feb 13 at 7:48
Moq (code.google.com/p/moq) is a free library for c# unit testing. isolator++ is same for c++ but they are asking money. i want a free library. dont have money to spent on that. i buy isolator++ for 600 dollars while the application i am making is of 200 dollar. doesnt make any sense to use isolator++. – fhnaseer Feb 13 at 7:52
@Michael Anderson I would add the disclaimer although I don't see the relevnace - since I no longer work there – Dror Helper Feb 13 at 8:08
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.