Does anyone have any experience with Mock Object frameworks in C++? I haven't been able to find much. It appears Google will be open sourcing theirs soon, so I guess it may be best to wait for that, but still interested to hear of others.

Just an update the Google's gMock has been out for a while now.

link|improve this question
feedback

6 Answers

up vote 15 down vote accepted

We just release it: http://code.google.com/p/googlemock/

link|improve this answer
feedback

Check out mockpp, it should be familiar if you've used mock objects before.

link|improve this answer
feedback

I use AMOP in conjunction with UnitTest++.

link|improve this answer
feedback

I've written Hippo Mocks ( www.assembla.com/spaces/hippomocks ) which should work quite well. It's been released a while back and will very soon get an update (the tip of the archive already contains the relevant fixes).

link|improve this answer
feedback

Downsides of Google Mock compared to HippoMocks are:

(0) Much more verbose

(1) You have to derive from the class which you want to mock. This means that you need the implementation (not only the interface) of classes you want to mock. In a lot of cases you don't want that in a unit test because the implementation can be platform dependent and you don't have the implementation of that platform (this can be solved using an null implementation for that platform).

(2) The constructor/destructor(if virtual) of your mocked class will be called.

(3) Explicitly make boilerplate code for every not implemented virtual function in the class to mock.

link|improve this answer
Is Hippo Mocks still being maintained? I see the last release was in 2009. – Robert S. Barnes Mar 3 '11 at 9:56
2  
Yes it is maintained still by the author and you can get the latest greatest from: svn.assembla.com/svn/hippomocks. It has new features like Expecting Calls on destructors and mocking free/static functions (architecture dependent code). He doesn't release to often. I can say that the version from the assembla/subversion archive is pretty stable. – Bjorn Mar 3 '11 at 20:05
feedback

gMock is awesome. (I thought it was already released! :-( )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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