Im very new to mocking frameworks, but I have decided to take a look at Moq. It is my understanding that I can test that a method call will occur if I call a higher level method i.e.
public abstract class SomeClass()
{
public void SomeMehod()
{
SomeOtherMethod();
}
internal abstract void SomeOtherMethod();
}
Basically, all I want to test is that if I call SomeMethod() than I expect that SomeOtherMethod() will be called.
Am I right in thinking this sort of test is available in a mocking framework?