public function PHPUnit_Framework_MockObject_Matcher_InvokedRecorder::matches

Parameters

PHPUnit_Framework_MockObject_Invocation $invocation:

Return value

boolean

Overrides PHPUnit_Framework_MockObject_Matcher_Invocation::matches

File

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

Class

PHPUnit_Framework_MockObject_Matcher_InvokedRecorder
Records invocations and provides convenience methods for checking them later on. This abstract class can be implemented by matchers which needs to check the number of times an invocation has occured.

Code

public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) {
  return TRUE;
}