Verifies the mock object expectations.
@since Method available since Release 3.5.0
protected function verifyMockObjects() {
foreach ($this->mockObjects as $mockObject) {
if ($mockObject
->__phpunit_hasMatchers()) {
$this->numAssertions++;
}
$mockObject
->__phpunit_verify();
$mockObject
->__phpunit_cleanup();
}
}