I just started working on unit testing (using BOOST framework for testing, but for mocks I have to use gmock) and I have this situation :

class A
{
  A(){}
  virtual int Method1(int a, int b){return a+b;}
};

class B
{
  static int Method2(int a, int b){ return A().Method1(a,b);}
};

Is it possible to do testing of class B, in that way to use mocked Method1 instead of real method, but not to change class B? I know this would be easy :

class B
{
  B(A *a):a_in_b(a){}
  static int Method2(int a, int b){return a_in_b->Mehod1();}
  A *a_in_b;
};
link|improve this question
not possible without changing B – BЈовић Jan 21 at 11:26
feedback

1 Answer

You could follow the guide on http://code.google.com/p/googlemock/wiki/ForDummies to build you a mock of A:

#include <gmock/gmock.h>
class MockA : public A
{
public:
    MOCK_METHOD2(Method1, int(int a, int b));
};

Before calling Method2 in class B make sure B knows the mock of A (assign the variable in B with the Mockobject of A) and execute an EXPECT_CALL:

MockA mock;
EXPECT_CALL(mock, Method1(_, _)
    .WillRepeatedly(Return(a + b);

Make sure that the variables a and b are valid in the execution context of the test.

link|improve this answer
I think this is the answer I described in my question as something that I know it is possible, and this solution means changing class B (I would have to add variable A *a_in_b in my class B). I agree with VJovic, and I think it is not possible to do mocking without changing class B. I thought gmock is something special, some magic, but it is just simple polymorphism :) – user1160721 Jan 22 at 8:23
feedback

Your Answer

 
or
required, but never shown

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