I have class

class CSumWnd : public CBaseWnd
{

 private:
 bool MethodA()
}

Please can you help how to mock MethodA() without making virtual, I didn't understand the concept of hi-perf dependency injection

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

It means you will have to templatize your production code. Using your example:

CSumWind class declaration

class CSumWnd : public CBaseWnd
{

 private:
 bool MethodA()
};

Mocked CSumWnd class declaration

class MockCSumWnd : public CBaseWnd
{

 private:
 MOCK_METHOD(MethodA, bool());
};

Producton class which have to be tested with mocked class CSumWind. Now it becomes templated to provide using CSumWind class in production code and MockCSumWnd class in tests

template <class CSumWndClass>
class TestedClass {
//...
   void useSumWnd(const CSumWndClass &a);

private:
  CSumWndClass sumWnd;
};

Instantiation of TestedClass in production:

TestedClass <CSumWnd> obj;

Instantiation of TestedClass object in test executable:

TestedClass <MockCSumWnd> testObj;
link|improve this answer
To keep your 'production' code clean, I find it helpful to do this: template <class CSumWndClass> class TestedClassTemplate { ... }, and then do typedef TestedClassTemplate<CSumWndClass> TestedClass; – smehmood Apr 28 '11 at 19:28
1  
See stackoverflow.com/q/1127918/49972 for information on the consequences of doing what you propose. – Tobias Furuholm May 26 '11 at 20:19
feedback

Your Answer

 
or
required, but never shown

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