/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Invocation/ |
H A D | ObjectTest.php | 20 $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 D | StaticTest.php | 19 $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 D | ConsecutiveParameters.php | 60 * @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 D | Parameters.php | 30 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 D | InvokedRecorder.php | 52 * @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 D | Invocation.php | 30 …* @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 D | InvokedAtIndex.php | 52 * @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 D | InvokedCount.php | 53 * @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 D | StatelessInvocation.php | 34 …* @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 D | MethodName.php | 60 * @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 D | AnyParameters.php | 27 * @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 D | InvocationMocker.php | 113 * @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 D | Matcher.php | 93 * @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 D | Invokable.php | 25 …* @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 D | Stub.php | 25 …* @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 D | Invocation.php | 126 $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 D | ReturnSelf.php | 18 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument 20 if (!$invocation instanceof PHPUnit_Framework_MockObject_Invocation_Object) { 27 return $invocation->object;
|
H A D | ReturnArgument.php | 25 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument 27 if (isset($invocation->parameters[$this->argumentIndex])) { 28 return $invocation->parameters[$this->argumentIndex];
|
H A D | ReturnValueMap.php | 25 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument 27 $parameterCount = count($invocation->parameters); 35 if ($invocation->parameters === $map) {
|
H A D | ConsecutiveCalls.php | 28 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument 33 $this->value = $this->value->invoke($invocation);
|
H A D | ReturnCallback.php | 23 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument 25 return call_user_func_array($this->callback, $invocation->parameters);
|
H A D | Return.php | 27 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
|
H A D | Exception.php | 34 public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) argument
|
/plugin/rssticker/ |
H A D | plugin.info.txt | 6 desc Based of Advanced RSS Ticker (Ajax invocation) by www.dynamicdrive.com
|
/plugin/wysiwyg/fckeditor/ |
H A D | fckeditor.cfc | 44 * limitation with the cfc invocation.
|