Searched refs:methodProphecy (Results 1 – 6 of 6) sorted by relevance
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/ |
D | CallCenter.php | 85 foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { 86 if (0 < $score = $methodProphecy->getArgumentsWildcard()->scoreArguments($arguments)) { 87 $matches[] = array($score, $methodProphecy); 101 $methodProphecy = $matches[0][1]; 104 if ($promise = $methodProphecy->getPromise()) { 106 $returnValue = $promise->execute($arguments, $prophecy, $methodProphecy); 112 if ($methodProphecy->hasReturnVoid() && $returnValue !== null) { 115 $methodProphecy 122 $call->addScore($methodProphecy->getArgumentsWildcard(), $score); 165 …oreach (call_user_func_array('array_merge', $prophecy->getMethodProphecies()) as $methodProphecy) { [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ |
D | MethodProphecyException.php | 18 private $methodProphecy; variable in Prophecy\\Exception\\Prophecy\\MethodProphecyException 20 public function __construct($message, MethodProphecy $methodProphecy) argument 22 parent::__construct($message, $methodProphecy->getObjectProphecy()); 24 $this->methodProphecy = $methodProphecy; 32 return $this->methodProphecy;
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ |
D | ObjectProphecy.php | 132 * @param MethodProphecy $methodProphecy 137 public function addMethodProphecy(MethodProphecy $methodProphecy) argument 139 $argumentsWildcard = $methodProphecy->getArgumentsWildcard(); 145 $methodProphecy->getMethodName() 146 ), $methodProphecy); 149 $methodName = $methodProphecy->getMethodName(); 155 $this->methodProphecies[$methodName][] = $methodProphecy;
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/ |
D | UnexpectedCallsCountException.php | 20 public function __construct($message, MethodProphecy $methodProphecy, $count, array $calls) argument 22 parent::__construct($message, $methodProphecy, $calls);
|
D | UnexpectedCallsException.php | 21 public function __construct($message, MethodProphecy $methodProphecy, array $calls) argument 23 parent::__construct($message, $methodProphecy);
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
D | TestCase.php | 1167 foreach ($methodProphecies as $methodProphecy) { 1168 $this->numAssertions += count($methodProphecy->getCheckedPredictions());
|