Searched refs:expectedCount (Results 1 – 6 of 6) sorted by relevance
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ |
H A D | InvokedCount.php | 26 protected $expectedCount; variable in PHPUnit_Framework_MockObject_Matcher_InvokedCount 29 * @param int $expectedCount 31 public function __construct($expectedCount) argument 33 $this->expectedCount = $expectedCount; 41 return $this->expectedCount == 0; 49 return 'invoked ' . $this->expectedCount . ' time(s)'; 63 if ($count > $this->expectedCount) { 66 switch ($this->expectedCount) { 80 $this->expectedCount 99 if ($count !== $this->expectedCount) { [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/ |
H A D | Count.php | 16 protected $expectedCount = 0; variable in PHPUnit_Framework_Constraint_Count 24 $this->expectedCount = $expected; 37 return $this->expectedCount === $this->getCountOf($other); 108 $this->expectedCount 119 $this->expectedCount
|
H A D | SameSize.php | 16 protected $expectedCount; variable in PHPUnit_Framework_Constraint_SameSize
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/ |
H A D | UnexpectedCallsCountException.php | 18 private $expectedCount; variable in Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException 24 $this->expectedCount = intval($count); 29 return $this->expectedCount;
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/ |
H A D | Functions.php | 141 * @param int $expectedCount 146 function assertAttributeCount($expectedCount, $haystackAttributeName, $haystackClassOrObject, $mess… argument 329 * @param int $expectedCount 334 function assertAttributeNotCount($expectedCount, $haystackAttributeName, $haystackClassOrObject, $m… argument 556 * @param int $expectedCount 560 function assertCount($expectedCount, $haystack, $message = '') argument 988 * @param int $expectedCount 992 function assertNotCount($expectedCount, $haystack, $message = '') argument
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
H A D | Assert.php | 379 * @param int $expectedCount 383 public static function assertCount($expectedCount, $haystack, $message = '') argument 385 if (!is_int($expectedCount)) { 397 new PHPUnit_Framework_Constraint_Count($expectedCount), 406 * @param int $expectedCount 414 $expectedCount, 423 * @param int $expectedCount 429 if (!is_int($expectedCount)) { 440 new PHPUnit_Framework_Constraint_Count($expectedCount) 450 * @param int $expectedCount [all …]
|