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;
};