I've started to use GTest (Google Test) for a C++ project I'm working on. I have one class that depends heavily on MFC (CFile, CObject, CString, etc.).
How can I break the dependencies on MFC (or minimize them) so I don't have to create dummy MFC objects just to run my tests? I want to test what my methods do not MFC functionnalities.
Here is an example of the kind of method I have to test :
// DumpContext class inherits from CDumpContext
void MyClass::Print(DumpContext &dc)
{
// MyClass::Print real work goes here :
...
}