You are here

public function PHPUnit_Framework_MockObject_Matcher_StatelessInvocation::verify in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php \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

2 methods override PHPUnit_Framework_MockObject_Matcher_StatelessInvocation::verify()
PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters::verify in vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ConsecutiveParameters.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.
PHPUnit_Framework_MockObject_Matcher_Parameters::verify in vendor/phpunit/phpunit-mock-objects/src/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

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php, line 53

Class

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

Code

public function verify() {
}