Home
last modified time | relevance | path

Searched refs:invocation (Results 1 – 25 of 36) sorted by relevance

12

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Invocation/
H A DObjectTest.php20 $invocation = new PHPUnit_Framework_MockObject_Invocation_Object(
28 $this->assertSame('FooClass', $invocation->className);
33 $invocation = new PHPUnit_Framework_MockObject_Invocation_Object(
41 $this->assertSame('FooMethod', $invocation->methodName);
48 $invocation = new PHPUnit_Framework_MockObject_Invocation_Object(
56 $this->assertSame($expectedObject, $invocation->object);
65 $invocation = new PHPUnit_Framework_MockObject_Invocation_Object(
73 $this->assertSame($expectedParameters, $invocation->parameters);
90 $this->assertEquals($parameters, $invocation->parameters);
91 $this->assertNotSame($parameters, $invocation->parameters);
[all …]
H A DStaticTest.php19 $invocation = new PHPUnit_Framework_MockObject_Invocation_Static(
26 $this->assertSame('FooClass', $invocation->className);
31 $invocation = new PHPUnit_Framework_MockObject_Invocation_Static(
38 $this->assertSame('FooMethod', $invocation->methodName);
47 $invocation = new PHPUnit_Framework_MockObject_Invocation_Static(
54 $this->assertSame($expectedParameters, $invocation->parameters);
62 $invocation = new PHPUnit_Framework_MockObject_Invocation_Static(
70 $this->assertEquals($parameters, $invocation->parameters);
71 $this->assertNotSame($parameters, $invocation->parameters);
78 $invocation = new PHPUnit_Framework_MockObject_Invocation_Static(
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
H A DConsecutiveParameters.php60 * @param PHPUnit_Framework_MockObject_Invocation $invocation
66 $this->invocations[] = $invocation;
69 $this->verifyInvocation($invocation, $callIndex);
76 foreach ($this->invocations as $callIndex => $invocation) {
77 $this->verifyInvocation($invocation, $callIndex);
84 * @param PHPUnit_Framework_MockObject_Invocation $invocation
98 if ($invocation === null) {
104 if (count($invocation->parameters) < count($parameters)) {
108 $invocation->toString()
115 $invocation->parameters[$i],
[all …]
H A DParameters.php30 protected $invocation; variable in PHPUnit_Framework_MockObject_Matcher_Parameters
72 * @param PHPUnit_Framework_MockObject_Invocation $invocation
76 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
78 $this->invocation = $invocation;
107 if ($this->invocation === null) {
113 if (count($this->invocation->parameters) < count($this->parameters)) {
126 sprintf($message, $this->invocation->toString())
132 $this->invocation->parameters[$i],
137 $this->invocation->toString()
H A DInvokedRecorder.php52 * @param PHPUnit_Framework_MockObject_Invocation $invocation
54 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation) argument
56 $this->invocations[] = $invocation;
60 * @param PHPUnit_Framework_MockObject_Invocation $invocation
64 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
H A DInvocation.php30 …* @param PHPUnit_Framework_MockObject_Invocation $invocation Object containing information on a mo…
34 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation); argument
41 …* @param PHPUnit_Framework_MockObject_Invocation $invocation Object containing information on a mo…
45 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation); argument
H A DInvokedAtIndex.php52 * @param PHPUnit_Framework_MockObject_Invocation $invocation
56 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
64 * @param PHPUnit_Framework_MockObject_Invocation $invocation
66 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation) argument
H A DInvokedCount.php53 * @param PHPUnit_Framework_MockObject_Invocation $invocation
57 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation) argument
59 parent::invoked($invocation);
64 $message = $invocation->toString() . ' ';
H A DStatelessInvocation.php34 …* @param PHPUnit_Framework_MockObject_Invocation $invocation Object containing information on a mo…
38 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation) argument
47 …* @param PHPUnit_Framework_MockObject_Invocation $invocation Object containing information on a mo…
H A DMethodName.php60 * @param PHPUnit_Framework_MockObject_Invocation $invocation
64 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
66 return $this->constraint->evaluate($invocation->methodName, '', true);
H A DAnyParameters.php27 * @param PHPUnit_Framework_MockObject_Invocation $invocation
31 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DInvocationMocker.php113 * @param PHPUnit_Framework_MockObject_Invocation $invocation
119 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
127 if ($match->matches($invocation)) {
128 $value = $match->invoked($invocation);
146 } elseif (strtolower($invocation->methodName) == '__tostring') {
150 return $invocation->generateReturnValue();
154 * @param PHPUnit_Framework_MockObject_Invocation $invocation
158 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) argument
161 if (!$matcher->matches($invocation)) {
H A DMatcher.php93 * @param PHPUnit_Framework_MockObject_Invocation $invocation
97 public function invoked(PHPUnit_Framework_MockObject_Invocation $invocation) argument
110 $builder = $invocation->object
130 $this->invocationMatcher->invoked($invocation);
134 !$this->parametersMatcher->matches($invocation)) {
150 return $this->stub->invoke($invocation);
153 return $invocation->generateReturnValue();
157 * @param PHPUnit_Framework_MockObject_Invocation $invocation
164 $builder = $invocation->object
198 if (!$this->invocationMatcher->matches($invocation)) {
[all …]
H A DInvokable.php25 …* @param PHPUnit_Framework_MockObject_Invocation $invocation The invocation object passed from moc…
29 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation); argument
34 …* @param PHPUnit_Framework_MockObject_Invocation $invocation The invocation object passed from moc…
38 public function matches(PHPUnit_Framework_MockObject_Invocation $invocation); argument
H A DStub.php25 …* @param PHPUnit_Framework_MockObject_Invocation $invocation The invocation which was mocked and m…
29 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation); argument
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/
H A DInvocation.php126 $invocation = new SUT($rule, $data)
128 ->when($result = $invocation->setDepth($depth))
142 $invocation = new SUT($rule, $data),
143 $invocation->setDepth($depth)
145 ->when($result = $invocation->getDepth())
157 $invocation = new SUT($rule, $data)
159 ->when($result = $invocation->isTransitional())
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/
H A DReturnSelf.php18 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
20 if (!$invocation instanceof PHPUnit_Framework_MockObject_Invocation_Object) {
27 return $invocation->object;
H A DReturnArgument.php25 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
27 if (isset($invocation->parameters[$this->argumentIndex])) {
28 return $invocation->parameters[$this->argumentIndex];
H A DReturnValueMap.php25 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
27 $parameterCount = count($invocation->parameters);
35 if ($invocation->parameters === $map) {
H A DConsecutiveCalls.php28 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
33 $this->value = $this->value->invoke($invocation);
H A DReturnCallback.php23 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
25 return call_user_func_array($this->callback, $invocation->parameters);
H A DReturn.php27 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
H A DException.php34 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
/plugin/rssticker/
H A Dplugin.info.txt6 desc Based of Advanced RSS Ticker (Ajax invocation) by www.dynamicdrive.com
/plugin/wysiwyg/fckeditor/
H A Dfckeditor.cfc44 * limitation with the cfc invocation.

12