You are here

public function PHPUnit_Framework_MockObject_Matcher_InvokedCount::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php \PHPUnit_Framework_MockObject_Matcher_InvokedCount::__construct()

Parameters

int $expectedCount:

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php, line 31

Class

PHPUnit_Framework_MockObject_Matcher_InvokedCount
Invocation matcher which checks if a method has been invoked a certain amount of times. If the number of invocations exceeds the value it will immediately throw an exception, If the number is less it will later be checked in verify() and also throw…

Code

public function __construct($expectedCount) {
  $this->expectedCount = $expectedCount;
}