public function PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount::verify in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php \PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount::verify()
Verifies that the current expectation is valid. If everything is OK the code should just return, if not it must throw an exception.
Throws
PHPUnit_Framework_ExpectationFailedException
Overrides PHPUnit_Framework_MockObject_Verifiable::verify
File
- vendor/
phpunit/ phpunit-mock-objects/ src/ Framework/ MockObject/ Matcher/ AnyInvokedCount.php, line 29
Class
- PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount
- Invocation matcher which checks if a method has been invoked zero or more times. This matcher will always match.
Code
public function verify() {
}