Home
last modified time | relevance | path

Searched refs:stub (Results 1 – 25 of 30) sorted by relevance

12

/plugin/pirate/
Drenderer.php149 function avast($stub = '',$chance = 5) { argument
151 ", avast$stub",
152 "$stub Ahoy!",
154 ", by Blackbeard's sword$stub",
155 ", by Davy Jones' locker$stub",
156 "$stub Walk the plank!",
157 "$stub Aarrr!",
158 "$stub Yaaarrrrr!",
161 ", with a chest full of booty$stub",
162 ", and a bucket o' chum$stub",
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/
DInvocationMocker.php76 * @param PHPUnit_Framework_MockObject_Stub $stub
80 public function will(PHPUnit_Framework_MockObject_Stub $stub) argument
82 $this->matcher->stub = $stub;
95 $stub = count($nextValues) === 0 ?
101 return $this->will($stub);
111 $stub = new PHPUnit_Framework_MockObject_Stub_ReturnReference($reference);
113 return $this->will($stub);
123 $stub = new PHPUnit_Framework_MockObject_Stub_ReturnValueMap(
127 return $this->will($stub);
137 $stub = new PHPUnit_Framework_MockObject_Stub_ReturnArgument(
[all …]
DStub.php22 * @param PHPUnit_Framework_MockObject_Stub $stub
26 public function will(PHPUnit_Framework_MockObject_Stub $stub); argument
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/
DTestCase.php86 $stub = $this->createMock(Xdebug::class);
88 $stub->expects($this->any())
100 $coverage = new CodeCoverage($stub, $filter);
152 $stub = $this->createMock(Xdebug::class);
154 $stub->expects($this->any())
164 $coverage = new CodeCoverage($stub, $filter);
192 $stub = $this->createMock(Xdebug::class);
194 $stub->expects($this->any())
204 $coverage = new CodeCoverage($stub, $filter);
285 $stub = $this->createMock(Xdebug::class);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/
Dbuild-phar.php49 $stub = '#!/usr/bin/env php'."\n"; variable
50 $stub .= '<?php'."\n";
51 $stub .= 'Phar::mapPhar(\''.$script.'.phar\');'."\n";
52 $stub .= 'require_once "phar://'.$script.'.phar/CodeSniffer/CLI.php";'."\n";
53 $stub .= '$cli = new PHP_CodeSniffer_CLI();'."\n";
54 $stub .= '$cli->run'.$script.'();'."\n";
55 $stub .= '__HALT_COMPILER();';
56 $phar->setStub($stub);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
DMatcher.php52 public $stub = null; variable in PHPUnit_Framework_MockObject_Matcher
85 if ($this->stub !== null) {
86 $list[] = 'will ' . $this->stub->toString();
149 if ($this->stub) {
150 return $this->stub->invoke($invocation);
/plugin/mundart/
Drenderer.php288 function avast($stub = '',$chance = 5) { argument
290 ", des kennste abr glaubn$stub",
295 return (((1 == rand(1,$chance))?array_shift($shouts):$stub) . ' ');
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/
DGeneratorTest.php174 $stub = $this->generator->getMock([AnInterfaceWithReturnType::class, AnInterface::class]);
176 $this->assertInstanceOf(AnInterfaceWithReturnType::class, $stub);
177 $this->assertInstanceOf(AnInterface::class, $stub);
178 $this->assertInstanceOf(PHPUnit_Framework_MockObject_MockObject::class, $stub);
/plugin/supa/
Dchangelog.txt6 Reintroduce some stub functions to make upgrade less painfull
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
DREADME.md131 A stub is an object double, which doesn't have any expectations about the object behavior,
133 but bear with me for a minute. Simply put, a stub is a dummy, which depending on the called
276 We've just described how our stub object should behave, even though the original object could have
305 Nothing. Your stub will continue behaving the way it did before. That's because of how
313 #### Getting stub objects
315 Ok, now we know how to define our prophecy method promises, let's get our stub from
319 $stub = $prophecy->reveal();
327 calling it on a stub.
/plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/
Dindex.mjs221 if (body == null || body.$$stub) Opal.type_error(object, type);
239 if (typeof(body) === "function" && !body.$$stub) {
942 if (method.$$stub && exclude.indexOf(method_name) === -1) {
946 …if (!method.$$stub && results.indexOf(method_name) === -1 && exclude.indexOf(method_name) === -1) {
972 if (!method.$$stub) {
1477 // Methods stubs are used to facilitate method_missing in opal. A stub is a
1480 // is obvious to say that the stub will be called instead, and then in turn
1489 // ruby object inherits, so all objects should handle method missing. A stub
1498 // All stub functions will have a private `$$stub` property set to true so
1499 // that other internal methods can detect if a method is just a stub or not.
[all …]
Dindex.cjs230 if (body == null || body.$$stub) Opal.type_error(object, type);
248 if (typeof(body) === "function" && !body.$$stub) {
951 if (method.$$stub && exclude.indexOf(method_name) === -1) {
955 …if (!method.$$stub && results.indexOf(method_name) === -1 && exclude.indexOf(method_name) === -1) {
981 if (!method.$$stub) {
1486 // Methods stubs are used to facilitate method_missing in opal. A stub is a
1489 // is obvious to say that the stub will be called instead, and then in turn
1498 // ruby object inherits, so all objects should handle method missing. A stub
1507 // All stub functions will have a private `$$stub` property set to true so
1508 // that other internal methods can detect if a method is just a stub or not.
[all …]
Dopal.js1513 var stub, existing_method;
1517 stub = $jsid(stubs[i]), existing_method = proto[stub];
1520 Opal.add_stub_for(proto, stub);
1531 Opal.add_stub_for = function(prototype, stub) { argument
1533 $prop(prototype, stub, Opal.stub_for(stub));
/plugin/smtp/subtree/txtthinking/Mailer/
H A Dcomposer.lock323 "stub"
/plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/
DCHANGELOG.md317 - [3ffbdc3](https://github.com/bcoe/yargs/commit/3ffbdc33c8f5e83d4ea2ac60575ce119570c7ede) stub out…
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/graalvm/
Dasciidoctor.js1513 var stub, existing_method;
1517 stub = $jsid(stubs[i]), existing_method = proto[stub];
1520 Opal.add_stub_for(proto, stub);
1531 Opal.add_stub_for = function(prototype, stub) { argument
1533 $prop(prototype, stub, Opal.stub_for(stub));
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/browser/
Dasciidoctor.js1516 var stub, existing_method;
1520 stub = $jsid(stubs[i]), existing_method = proto[stub];
1523 Opal.add_stub_for(proto, stub);
1534 Opal.add_stub_for = function(prototype, stub) { argument
1536 $prop(prototype, stub, Opal.stub_for(stub));
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js31254 FFTM.prototype.stub = function stub(N) {
31268 var _ = this.stub(N);
34940 FFTM.prototype.stub = function stub(N) {
34954 var _ = this.stub(N);
/plugin/xlsx2dw/packages/xlsx/
Dxlsx.mjs16705 /* TODO: something useful -- this is a stub */
21642 /* TODO: generate stub cells */
22166 break; /* stub */
26250 /* get cell, creating a stub if necessary */
/plugin/dirtylittlehelper/mermaid/editor/docs/
Deditor.worker.js.map1 …};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break …
Djson.worker.js.map1 …};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break …
/plugin/syntaxhighlighter4/dist/
Dsyntaxhighlighter.js.map1 …};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break …
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/node/
Dasciidoctor.cjs12809 …e')) && ($b = $a, $b) && ($c = $b) && ((($d = $c.$clock_gettime) && !$d.$$stub) || $c['$respond_to…
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
Dvocab.bpe24190 Ġstub born
/plugin/strata/
Dplotly-2.25.2.min.js8stub=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e},g.prototype.mulp=function(t,e…

12