Base class for mock objects (UnitTestStorage, UnitTestPlatform and UnitTestPhpVm) that provides an easy way to specify the replies for a call sequence.
To mock up an individual class, extend MockObject and then mimic the API that you want to mock. The body of each mimicked method should contain a call to MockObject::_makeReply, like this:
function describeMap($mapName, $tryAllModules=false) { return $this->_makeReply('describeMap', array($mapName, $tryAllModules)); }