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
{
static int Method1(int a, int b){return a+b;}
};

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

So, I need to create mock class A, and to make my class B not to use real Method1 from A class, but to use mock.

I'm not sure how to do this, and I could not find some similar example...

link|improve this question
I'm not familiar with gmock, but couldn't you just link B.o and mockA.o? – Beta Jan 20 at 13:54
As far as I know, there is some different way dealing with static methods. I could probably solve this with making Method1 to be virtual, and to add constructor in class B, so it looks something like B(A &a):a_in_class_b(a){}, and then call of Method1 would look like this : a_in_class_b->Method1(); But I want to see if there is some other way. – user1160721 Jan 20 at 14:01
feedback

1 Answer

up vote 1 down vote accepted

You could change class B into a template :

template< typename T >
class B
{
public:
static int Method2(int a, int b){ return T::Method1(a,b);}
};

and then create a mock :

struct MockA
{
  static MockCalc *mock;
  static int Method2(int a, int b){ return mock->Method1(a,b);}
};
class MockCalc {
 public:
  MOCK_METHOD2(Method1, int(int,int));
};

Before every test, initialize the static mock object MockA::mock.

Another option is to instead call directly A::Method1, create a functor object (maybe std::function type) in class B, and call that in the Method2. Then, it is simpler, because you would not need MockA, because you would create a callback to MockCalc::Method1 to this object. Something like this :

class B
{
public:
static std::function< int(int,int) > f;
static int Method2(int a, int b){ return f(a,b);}
};

class MockCalc {
 public:
  MOCK_METHOD2(Method1, int(int,int));
};

and to initialize it :

MockCalc mock;
B::f = [&mock](int a,int b){return mock.Method1(a,b);};
link|improve this answer
Thanks, this was the answer I was looking for :) – user1160721 Jan 20 at 23:28
@user1160721 there should be the "accept answer" button on the left, if this answer is the one you are looking for ;) – BЈовић Jan 21 at 8:44
O yeah, I can see it now, I'll click it, I'm new here. I can see there is some rating for every user and this "accept answer" increases this rating :) I have one more similar question related to this. To post a new one, or to ask in the comment ? :) – user1160721 Jan 21 at 9:28
I posted a new qustion so when you catch a time take a look :) – user1160721 Jan 21 at 10:08
feedback

Your Answer

 
or
required, but never shown

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