If have following class
public abstract class MyBaseClass : BaseClass
{
public override string Test(string value)
{
return value == null ? value : base.Test(value);
}
}
Using partial mocks I can actually test the first part of the Test-code (with value = null). Is it possible to test the fact that the call to the base class is actually done when value != null?