Home
last modified time | relevance | path

Searched refs:methodName (Results 26 – 50 of 89) sorted by path

1234

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/
H A DCallCenter.php49 * @param string $methodName
56 public function makeCall(ObjectProphecy $prophecy, $methodName, array $arguments) argument
77 if ('__destruct' === $methodName || 0 == count($prophecy->getMethodProphecies())) {
85 foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) {
120 $methodName, $arguments, $returnValue, $exception, $file, $line
134 * @param string $methodName
139 public function findCalls($methodName, ArgumentsWildcard $wildcard) argument
143 return $methodName === $call->getMethodName()
150 private function createUnexpectedCallException(ObjectProphecy $prophecy, $methodName, argument
190 $classname, $methodName, $argstring, implode("\n", $expected)
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DKeywordPatch.php44 foreach ($methodsToRemove as $methodName) {
45 $node->removeMethod($methodName);
H A DMagicCallPatch.php66 $methodName = $tag->getMethodName();
68 if (empty($methodName)) {
72 if (!$reflectionClass->hasMethod($methodName)) {
73 $methodNode = new MethodNode($methodName);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Call/
H A DUnexpectedCallException.php19 private $methodName; variable in Prophecy\\Exception\\Call\\UnexpectedCallException
23 $methodName, array $arguments) argument
27 $this->methodName = $methodName;
33 return $this->methodName;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/
H A DMethodNotExtendableException.php7 private $methodName; variable in Prophecy\\Exception\\Doubler\\MethodNotExtendableException
14 * @param string $methodName
16 public function __construct($message, $className, $methodName) argument
20 $this->methodName = $methodName;
30 return $this->methodName;
H A DMethodNotFoundException.php24 private $methodName; variable in Prophecy\\Exception\\Doubler\\MethodNotFoundException
34 * @param string $methodName
37 public function __construct($message, $classname, $methodName, $arguments = null) argument
42 $this->methodName = $methodName;
53 return $this->methodName;
H A DReturnByReferenceException.php17 private $methodName; variable in Prophecy\\Exception\\Doubler\\ReturnByReferenceException
22 * @param string $methodName
24 public function __construct($message, $classname, $methodName) argument
29 $this->methodName = $methodName;
39 return $this->methodName;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DMethodProphecy.php30 private $methodName; variable in Prophecy\\Prophecy\\MethodProphecy
42 * @param string $methodName
47 public function __construct(ObjectProphecy $objectProphecy, $methodName, $arguments = null) argument
50 if (!method_exists($double, $methodName)) {
52 'Method `%s::%s()` is not defined.', get_class($double), $methodName
53 ), get_class($double), $methodName, $arguments);
57 $this->methodName = $methodName;
59 $reflectedMethod = new \ReflectionMethod($double, $methodName);
65 $methodName
175 … "The method \"$this->methodName\" has a void return type, and so cannot return anything",
[all …]
H A DObjectProphecy.php149 $methodName = $methodProphecy->getMethodName();
151 if (!isset($this->methodProphecies[$methodName])) {
152 $this->methodProphecies[$methodName] = array();
161 * @param null|string $methodName
165 public function getMethodProphecies($methodName = null) argument
167 if (null === $methodName) {
175 return $this->methodProphecies[$methodName];
181 * @param string $methodName
197 * @param string $methodName
235 * @param string $methodName
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DFile.php601 foreach ($class['methods'] as $methodName => $method) {
602 …$this->classes[$className]['methods'][$methodName] = $this->newMethod($methodName, $method, $link);
604 … $this->startLines[$method['startLine']] = &$this->classes[$className]['methods'][$methodName];
605 … $this->endLines[$method['endLine']] = &$this->classes[$className]['methods'][$methodName];
637 foreach ($trait['methods'] as $methodName => $method) {
638 … $this->traits[$traitName]['methods'][$methodName] = $this->newMethod($methodName, $method, $link);
640 … $this->startLines[$method['startLine']] = &$this->traits[$traitName]['methods'][$methodName];
641 … $this->endLines[$method['endLine']] = &$this->traits[$traitName]['methods'][$methodName];
700 * @param string $methodName
706 private function newMethod($methodName, array $method, $link) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php71 foreach ($class['methods'] as $methodName => $method) {
98 'name' => $methodName
H A DCrap4j.php82 foreach ($class['methods'] as $methodName => $method) {
101 $methodNode->appendChild($document->createElement('methodName', $methodName));
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DDashboard.php73 $methodName = $className . '::' . $methodName;
82 $methodName
192 $key = $className . '::' . $methodName;
194 $key = $methodName;
219 list($class, $method) = explode('::', $methodName);
224 $methodName,
252 $key = $className . '::' . $methodName;
254 $key = $methodName;
279 foreach ($methodRisks as $methodName => $crap) {
280 list($class, $method) = explode('::', $methodName);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php803 foreach ($methods as $methodName) {
804 if ($methodName != '__construct' && $methodName != '__clone') {
805 $configurable[] = strtolower($methodName);
818 foreach ($methods as $methodName) {
834 $methodName,
840 foreach ($methods as $methodName) {
844 $methodReflections[$methodName],
851 foreach ($methods as $methodName) {
855 $methodName,
1038 * @param string $methodName
[all …]
H A DInvocationMocker.php146 } elseif (strtolower($invocation->methodName) == '__tostring') {
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/
H A DObject.php25 * @param string $methodName
31 …public function __construct($className, $methodName, array $parameters, $returnType, $object, $clo… argument
33 parent::__construct($className, $methodName, $parameters, $returnType, $cloneObjects);
H A DStatic.php53 public $methodName; variable in PHPUnit_Framework_MockObject_Invocation_Static
72 * @param string $methodName
77 …public function __construct($className, $methodName, array $parameters, $returnType, $cloneObjects… argument
80 $this->methodName = $methodName;
111 $this->methodName,
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
H A DMethodName.php66 return $this->constraint->evaluate($invocation->methodName, '', true);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Invocation/
H A DObjectTest.php41 $this->assertSame('FooMethod', $invocation->methodName);
H A DStaticTest.php38 $this->assertSame('FooMethod', $invocation->methodName);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DIncompleteTestCase.php48 * @param string $methodName
51 public function __construct($className, $methodName, $message = '') argument
54 parent::__construct($className . '::' . $methodName);
H A DSkippedTestCase.php49 public function __construct($className, $methodName, $message = '') argument
52 parent::__construct($className . '::' . $methodName);
H A DTestSuite.php906 * @param string $methodName
911 protected static function skipTest($class, $methodName, $message) argument
913 return new PHPUnit_Framework_SkippedTestCase($class, $methodName, $message);
918 * @param string $methodName
923 protected static function incompleteTest($class, $methodName, $message) argument
925 return new PHPUnit_Framework_IncompleteTestCase($class, $methodName, $message);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DJUnit.php330 $methodName = $test->getName();
332 if ($class->hasMethod($methodName)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/Template/
H A DTestCaseMethod.tpl.dist50 $test = new {className}('{methodName}', unserialize('{data}'), '{dataName}');

1234