public function PHPUnit_Framework_MockObject_Matcher_InvokedRecorder::hasBeenInvoked

Return value

boolean

File

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

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 hasBeenInvoked() {
  return count($this->invocations) > 0;
}