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
|
I have class
Please can you help how to mock MethodA() without making virtual, I didn't understand the concept of hi-perf dependency injection | ||||
|
feedback
|
|
It means you will have to templatize your production code. Using your example: CSumWind class declaration
Mocked CSumWnd class declaration
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
Instantiation of
Instantiation of
| |||||||
feedback
|