Hi Adam,
First I would like to welcome you, I hope you will find the Isolator product useful.
In general, the Isolator has no problem mocking private/internal methods,
you can mock them the same way you mock public ones.
here's an example for what (i think) you are trying to do:
First the tested classes
public class BaseClass
{
private string _MyProp;
protected string MyProp
{
get { return _MyProp; }
set { _MyProp = value; }
}
}
public class UnderTest : BaseClass
{
public string GetName()
{
return MyProp;
}
}
and now here is the test method:
[TestMethod]
public void BaseClassPropertyMock()
{
MockObject<UnderTest> mock = MockManager.MockObject<UnderTest>();
mock.ExpectGet("MyProp", "John");
UnderTest target = mock.Object as UnderTest;
Assert.AreEqual("John", target.GetName());
}