I have a public method that uses a local private method to get data from the Db.
private string SomeMethod(string)
{
...
Doing some operations
...
string data = GetDBData(string);
Doing some operations
...
}
I want to divert/isolate the private method GetDBData(string) using moles so my test will not require the DB.
Obviously, my question is: how to do it? thank you Uria
EDIT
Additional information:
i tried to change the method accessors both to public and internal protected, in both cases i can now see the methods as moles. BUT when running the test, the original method is still being used and not the detour I've implemented in the PexMethod.