Searched refs:methodProphecy (Results 1 – 6 of 6) sorted by relevance
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/ |
H A D | CallCenter.php | 85 foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { 87 $matches[] = array($score, $methodProphecy); 101 $methodProphecy = $matches[0][1]; 104 if ($promise = $methodProphecy->getPromise()) { 112 if ($methodProphecy->hasReturnVoid() && $returnValue !== null) { 115 $methodProphecy 122 $call->addScore($methodProphecy->getArgumentsWildcard(), $score); 170 $methodProphecy->getMethodName(), 197 private function formatExceptionMessage(MethodProphecy $methodProphecy) argument 203 $methodProphecy->getMethodName(), [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ |
H A 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/ |
H A 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/ |
H A D | UnexpectedCallsCountException.php | 20 public function __construct($message, MethodProphecy $methodProphecy, $count, array $calls) argument 22 parent::__construct($message, $methodProphecy, $calls);
|
H A 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/ |
H A D | TestCase.php | 1167 foreach ($methodProphecies as $methodProphecy) { 1168 $this->numAssertions += count($methodProphecy->getCheckedPredictions());
|