Home
last modified time | relevance | path

Searched refs:methodProphecy (Results 1 – 6 of 6) sorted by last modified time

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/
H A DUnexpectedCallsCountException.php20 public function __construct($message, MethodProphecy $methodProphecy, $count, array $calls) argument
22 parent::__construct($message, $methodProphecy, $calls);
H A DUnexpectedCallsException.php21 public function __construct($message, MethodProphecy $methodProphecy, array $calls) argument
23 parent::__construct($message, $methodProphecy);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DObjectProphecy.php132 * @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/phpunit/phpunit/src/Framework/
H A DTestCase.php1167 foreach ($methodProphecies as $methodProphecy) {
1168 $this->numAssertions += count($methodProphecy->getCheckedPredictions());
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/
H A DCallCenter.php85 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 DMethodProphecyException.php18 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;