public function PHPUnit_Framework_MockObject_Matcher_StatelessInvocation::verify

Checks if the invocation $invocation matches the current rules. If it does the matcher will get the invoked() method called which should check if an expectation is met.

Parameters

PHPUnit_Framework_MockObject_Invocation $invocation: Object containing information on a mocked or stubbed method which was invoked.

Return value

bool

Overrides PHPUnit_Framework_MockObject_Verifiable::verify

1 method overrides PHPUnit_Framework_MockObject_Matcher_StatelessInvocation::verify()
PHPUnit_Framework_MockObject_Matcher_Parameters::verify in drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Matcher/Parameters.php
Checks if the invocation $invocation matches the current rules. If it does the matcher will get the invoked() method called which should check if an expectation is met.

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Matcher/StatelessInvocation.php, line 93

Class

PHPUnit_Framework_MockObject_Matcher_StatelessInvocation
Invocation matcher which does not care about previous state from earlier invocations.

Code

public function verify() {
}