/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/ |
D | AssertTest.php | 26 $this->fail(); 49 $this->fail(); 65 $this->fail(); 78 $this->fail(); 91 $this->fail(); 111 $this->fail(); 140 $this->fail(); 171 $this->fail(); 197 $this->fail(); 224 $this->fail('Strict recursive array check fail.'); [all …]
|
D | ConstraintTest.php | 35 $this->fail(); 57 $this->fail(); 85 $this->fail(); 110 $this->fail(); 136 $this->fail(); 162 $this->fail(); 188 $this->fail(); 214 $this->fail(); 236 $this->fail(); 266 $this->fail(); [all …]
|
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/ |
D | Assert.php | 87 $this->fail('Unsupported parameter passed to assertContains().'); 110 $this->fail('Unsupported parameter passed to assertNotContains().'); 148 return $this->fail($message); 163 return $this->fail($message); 177 return $this->fail($message); 194 $this->fail('assertSame() only works with PHP >= 5.0.0.'); 206 return $this->fail($message); 209 $this->fail('Unsupported parameter passed to assertSame().'); 225 $this->fail('assertNotSame() only works with PHP >= 5.0.0.'); 237 return $this->fail($message); [all …]
|
/plugin/asciidocjs/node_modules/resolve/test/ |
D | resolver.js | 16 if (err) t.fail(err); 22 if (err) t.fail(err); 28 if (err) t.fail(err); 34 if (err) t.fail(err); 40 if (err) t.fail(err); 60 if (err) t.fail(err); 66 if (err) t.fail(err); 72 if (err) t.fail(err); 83 if (err) t.fail(err); 89 if (err) t.fail(err); [all …]
|
D | mock.js | 33 if (err) return t.fail(err); 39 if (err) return t.fail(err); 84 if (err) return t.fail(err); 90 if (err) return t.fail(err); 138 if (err) return t.fail(err); 177 if (err) return t.fail(err); 229 if (err) return t.fail(err); 235 if (err) return t.fail(err);
|
D | pathfilter.js | 21 if (err) st.fail(err); 38 if (err) t.fail(err); 67 if (err) st.fail(err);
|
/plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/lib/ |
D | validation.js | 13 usage.fail(demanded._.msg) 15 usage.fail('Not enough non-option arguments: got ' 44 usage.fail('Missing argument value: ' + missingRequiredArgs[0]) 47 usage.fail(message) 74 usage.fail('Missing required arguments: ' + Object.keys(missing).join(', ') + customMsg) 101 usage.fail('Unknown argument: ' + unknown[0]) 103 usage.fail('Unknown arguments: ' + unknown.join(', ')) 118 usage.fail('Argument check failed: ' + f.toString()) 120 usage.fail(result) 123 usage.fail(err.message ? err.message : err) [all …]
|
/plugin/webdav/vendor/sabre/event/lib/Promise/ |
D | functions.php | 34 return new Promise(function($success, $fail) use ($promises) { 51 function($reason) use ($fail) { 52 $fail($reason); 73 return new Promise(function($success, $fail) use ($promises) { 86 function($reason) use ($fail, &$alreadyDone) { 91 $fail($reason);
|
/plugin/asciidocjs/node_modules/nunjucks/src/ |
D | parser.js | 65 _proto.fail = function fail(msg, lineno, colno) { function 79 this.fail('expected ' + type + ', got ' + tok.type, tok.lineno, tok.colno); 99 this.fail('unexpected end of file'); 102 this.fail('advanceAfterBlockEnd: expected symbol token or ' + 'explicit name to be passed'); 112 this.fail('expected block end in ' + name + ' statement'); 122 this.fail('expected variable end'); 139 this.fail('parseFor: expected for{Async}', forTok.lineno, forTok.colno); 143 this.fail('parseFor: variable name expected for loop'); 157 this.fail('parseFor: expected "in" keyword for loop', forTok.lineno, forTok.colno); 172 this.fail('expected macro'); [all …]
|
/plugin/s5reloaded/ui/effects_support/ |
D | unittest.js | 269 fail: function(message) { method in Test.Unit.Assertions 288 this.fail(message); } 294 this.fail(message + ': expected "' + Test.Unit.inspect(expected) + 301 this.fail(message + ': expected "' + Test.Unit.inspect(expected) + 309 this.pass() : this.fail(message + ': expected ' + Test.Unit.inspect(expected) + 316 this.fail(message + ': got "' + Test.Unit.inspect(actual) + '"'); } 322 this.fail(message + ': expected "' + Test.Unit.inspect(expected) + 329 this.fail(message + ': expected "' + Test.Unit.inspect(expected) + 336 this.fail(message + ': got "' + Test.Unit.inspect(obj) + '"'); } 343 …this.fail(message + ' : regex: "' + Test.Unit.inspect(expected) + ' did not match: ' + Test.Unit.… [all …]
|
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/ |
D | DataHelperTest.php | 25 $this->fail('Should be detected as empty value.'); 33 $this->fail('Should not be detected as empty value.'); 72 $this->fail('Should be detected as numeric value.'); 80 $this->fail('Should not be detected as numeric value.');
|
D | ExporterTest.php | 14 $this->fail('Requesting an item count less than one should cause an exception.'); 24 $this->fail('Requesting an unknown exporter type must cause an exception.');
|
/plugin/asciidocjs/node_modules/yargs/build/lib/ |
D | validation.js | 18 usage.fail(demandedCommands._.minMsg 25 …usage.fail(__n('Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option… 30 usage.fail(demandedCommands._.maxMsg 37 …usage.fail(__n('Too many non-option arguments: got %s, maximum of %s', 'Too many non-option argume… 44 …usage.fail(__n('Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option… 65 …usage.fail(__n('Missing required argument: %s', 'Missing required arguments: %s', Object.keys(miss… 109 …usage.fail(__n('Unknown argument: %s', 'Unknown arguments: %s', unknown.length, unknown.join(', ')… 127 …usage.fail(__n('Unknown command: %s', 'Unknown commands: %s', unknown.length, unknown.join(', '))); 164 usage.fail(msg); 225 usage.fail(msg); [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
D | ErrorTest.php | 57 $this->fail(); 85 $this->fail(); 102 $this->fail(); 121 $this->fail(); 144 $this->fail(); 154 $this->fail();
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/ |
D | SandboxTest.php | 69 … $this->fail('Sandbox throws a SecurityError exception if an unallowed method is called'); 82 … $this->fail('Sandbox throws a SecurityError exception if an unallowed filter is called'); 94 …$this->fail('Sandbox throws a SecurityError exception if an unallowed tag is used in the template'… 106 …$this->fail('Sandbox throws a SecurityError exception if an unallowed property is called in the te… 122 …$this->fail('Sandbox throws a SecurityError exception if an unallowed method (__toString()) is cal… 192 …$this->fail('Sandbox throws a SecurityError exception if an unallowed function is called in the te… 204 … $this->fail('Sandbox throws a SecurityError exception if the unallowed range operator is called'); 279 … $this->fail('Sandbox throws a SecurityError exception when the included file is sandboxed'); 311 $this->fail('An exception should be thrown for this test to be valid.');
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/ |
D | CalendarHomeSharedCalendarsTest.php | 75 if (!$hasShareable) $this->fail('Missing node!'); 76 if (!$hasShared) $this->fail('Missing node!'); 77 if (!$hasNotifications) $this->fail('Missing node!');
|
D | JCalTransformTest.php | 42 $this->fail('Json decoding error: ' . json_last_error_msg()); 91 … $this->fail('Json decoding error: ' . json_last_error_msg() . '. Full response: ' . $response); 144 $this->fail('Json decoding error: ' . json_last_error_msg()); 197 $this->fail('Json decoding error: ' . json_last_error_msg());
|
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/ |
D | SimpleTokenParserTest.php | 29 $this->fail(); 36 $this->fail(); 43 $this->fail();
|
/plugin/move/_test/ |
D | stepThroughDocuments.test.php | 40 public $fail = false; variable in helper_plugin_move_op_mock 43 if ($this->fail !== false && count($this->movedPages) == $this->fail) { 44 $this->fail=false; 182 $actual_move_Operator->fail = $fail_at_item; 229 $actual_move_Operator->fail = 5;
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
D | BankAccountTest.test.php | 49 $this->fail(); 67 $this->fail();
|
D | BankAccountTest.php | 56 $this->fail(); 74 $this->fail();
|
D | BankAccountTest2.php | 41 $this->fail(); 54 $this->fail();
|
/plugin/graphviz/ |
D | img.php | 18 if (!$cache) fail(); 29 function fail() function
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/ |
D | Mock.php | 12 public $fail = false; variable in Sabre\\DAV\\Auth\\Backend\\Mock 57 if ($this->fail) {
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/_files/ |
D | BankAccountTest.php | 34 $this->fail(); 50 $this->fail();
|