Searched refs:expectedCount (Results 1 – 6 of 6) sorted by relevance
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ |
| 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/ |
| 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
|
| D | SameSize.php | 16 protected $expectedCount; variable in PHPUnit_Framework_Constraint_SameSize
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/ |
| 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/ |
| 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/ |
| 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 411 …public static function assertAttributeCount($expectedCount, $haystackAttributeName, $haystackClass… argument 414 $expectedCount, 423 * @param int $expectedCount 427 public static function assertNotCount($expectedCount, $haystack, $message = '') argument 429 if (!is_int($expectedCount)) { [all …]
|