| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/ |
| D | TestCaseTest.php | 44 $test = new Success; 45 $result = $test->run(); 47 $this->assertEquals(PHPUnit_Runner_BaseTestRunner::STATUS_PASSED, $test->getStatus()); 56 $test = new Failure; 57 $result = $test->run(); 59 $this->assertEquals(PHPUnit_Runner_BaseTestRunner::STATUS_FAILURE, $test->getStatus()); 68 $test = new TestError; 69 $result = $test->run(); 71 $this->assertEquals(PHPUnit_Runner_BaseTestRunner::STATUS_ERROR, $test->getStatus()); 80 $test = new TestSkipped(); [all …]
|
| D | TestListenerTest.php | 23 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 28 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 33 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 38 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 43 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 48 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 61 public function startTest(PHPUnit_Framework_Test $test) argument 66 public function endTest(PHPUnit_Framework_Test $test, $time) argument 86 $test = new TestError; 87 $test->run($this->result); [all …]
|
| /plugin/struct/ |
| H A D | deleted.files | 4 _test/AccessTableDataDB.test.php 5 _test/AccessTableDataDBMulti.test.php 6 _test/AccessTableDataReplacement.test.php 7 _test/AccessTableDataSQL.test.php 8 _test/AggregationExportCSV.test.php 9 _test/AggregationResults.test.php 10 _test/Assignments.test.php 11 _test/Bureaucracy.test.php 12 _test/Column.test.php 13 _test/ConfigParser.test.php [all …]
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | nested-lists.md | 87 - test 88 - test 89 - test 90 - test 91 - test 95 - test 96 - test 98 - test 99 - test 101 - test [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/ |
| D | TAP.php | 48 * @param PHPUnit_Framework_Test $test 52 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 54 $this->writeNotOk($test, 'Error'); 60 * @param PHPUnit_Framework_Test $test 64 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 66 $this->writeNotOk($test, 'Warning'); 72 * @param PHPUnit_Framework_Test $test 76 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 78 $this->writeNotOk($test, 'Failure'); 114 * @param PHPUnit_Framework_Test $test [all …]
|
| D | JSON.php | 34 * @param PHPUnit_Framework_Test $test 38 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 45 $test 54 * @param PHPUnit_Framework_Test $test 58 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 65 $test 74 * @param PHPUnit_Framework_Test $test 78 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 85 $test 94 * @param PHPUnit_Framework_Test $test [all …]
|
| D | TeamCity.php | 53 * @param PHPUnit_Framework_Test $test 57 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 62 'name' => $test->getName(), 72 * @param PHPUnit_Framework_Test $test 76 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 81 'name' => $test->getName(), 91 * @param PHPUnit_Framework_Test $test 95 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 98 'name' => $test->getName(), 133 * @param PHPUnit_Framework_Test $test [all …]
|
| D | JUnit.php | 117 * @param PHPUnit_Framework_Test $test 121 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 123 $this->doAddFault($test, $e, $time, 'error'); 130 * @param PHPUnit_Framework_Test $test 134 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 140 $this->doAddFault($test, $e, $time, 'warning'); 147 * @param PHPUnit_Framework_Test $test 151 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 153 $this->doAddFault($test, $e, $time, 'failure'); 160 * @param PHPUnit_Framework_Test $test [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ |
| D | ResultPrinter.php | 116 * @param PHPUnit_Framework_Test $test 120 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 122 if (!$this->isOfInterest($test)) { 133 * @param PHPUnit_Framework_Test $test 137 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 139 if (!$this->isOfInterest($test)) { 150 * @param PHPUnit_Framework_Test $test 154 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 156 if (!$this->isOfInterest($test)) { 167 * @param PHPUnit_Framework_Test $test [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/ |
| D | TicketListener.php | 29 * @param PHPUnit_Framework_Test $test 33 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 40 * @param PHPUnit_Framework_Test $test 44 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 51 * @param PHPUnit_Framework_Test $test 55 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 62 * @param PHPUnit_Framework_Test $test 66 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 73 * @param PHPUnit_Framework_Test $test 77 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
| D | TestDecorator.php | 25 protected $test = null; variable in PHPUnit_Extensions_TestDecorator 30 * @param PHPUnit_Framework_Test $test 32 public function __construct(PHPUnit_Framework_Test $test) argument 34 $this->test = $test; 44 return $this->test->toString(); 55 $this->test->run($result); 66 return count($this->test); 86 return $this->test;
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/ |
| D | XML.php | 62 * @param PHPUnit_Framework_Test $test 66 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 74 * @param PHPUnit_Framework_Test $test 78 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 85 * @param PHPUnit_Framework_Test $test 89 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 97 * @param PHPUnit_Framework_Test $test 101 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 108 * @param PHPUnit_Framework_Test $test 112 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
| D | TestResult.php | 214 * @param PHPUnit_Framework_Test $test 218 public function addError(PHPUnit_Framework_Test $test, $t, $time) argument 221 $this->risky[] = new PHPUnit_Framework_TestFailure($test, $t); 224 if ($test instanceof PHPUnit_Framework_TestCase) { 225 $test->markAsRisky(); 232 $this->notImplemented[] = new PHPUnit_Framework_TestFailure($test, $t); 239 $this->skipped[] = new PHPUnit_Framework_TestFailure($test, $t); 246 $this->errors[] = new PHPUnit_Framework_TestFailure($test, $t); 260 $listener->$notifyMethod($test, $t, $time); 271 * @param PHPUnit_Framework_Test $test [all …]
|
| D | TestListener.php | 19 * @param PHPUnit_Framework_Test $test 23 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time); argument 28 * @param PHPUnit_Framework_Test $test 41 * @param PHPUnit_Framework_Test $test 45 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument 50 * @param PHPUnit_Framework_Test $test 54 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument 59 * @param PHPUnit_Framework_Test $test 63 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument 68 * @param PHPUnit_Framework_Test $test [all …]
|
| D | TestSuite.php | 205 * @param PHPUnit_Framework_Test $test 208 public function addTest(PHPUnit_Framework_Test $test, $groups = []) argument 210 $class = new ReflectionClass($test); 213 $this->tests[] = $test; 216 if ($test instanceof self && 218 $groups = $test->getGroups(); 227 $this->groups[$group] = [$test]; 229 $this->groups[$group][] = $test; 233 if ($test instanceof PHPUnit_Framework_TestCase) { 234 $test->setGroups($groups); [all …]
|
| /plugin/asciidocjs/node_modules/jake/test/integration/ |
| D | task_base.js | 12 test('default task', function () { 20 test('task with no action', function () { 25 test('a task with no action and no prereqs', function () { 29 …test('a task that exists at the top-level, and not in the specified namespace, should error', func… 36 test('passing args to a task', function () { 44 test('a task with environment vars', function () { 52 test('passing args and using environment vars', function () { 63 test('a simple prereq', function () { 68 test('a duplicate prereq only runs once', function () { 73 test('a prereq with command-line args', function () { [all …]
|
| /plugin/freechat/phpfreechat/lib/pear/PHPUnit/ |
| D | TestResult.php | 113 function addError(&$test, &$t) { argument 114 $this->_errors[] = new PHPUnit_TestFailure($test, $t); 117 $this->_listeners[$i]->addError($test, $t); 129 function addFailure(&$test, &$t) { argument 130 $this->_failures[] = new PHPUnit_TestFailure($test, $t); 133 $this->_listeners[$i]->addFailure($test, $t); 156 function addPassedTest(&$test) { argument 157 $this->_passedTests[] = &$test; 166 function endTest(&$test) { argument 168 $this->_listeners[$i]->endTest($test); [all …]
|
| /plugin/latexit/tests/dw_orig_test_files/ |
| D | test9.txt | 1 [[:test:start|{{:test:52janeirob.jpg}}]] 2 {{:test:52janeirob.jpg|aaa}} 3 {{:test:52janeirob.jpg?200}} 4 {{:test:52janeirob.jpg?200x50}} 7 {{ :test:52janeirob.jpg?200}} 8 {{ :test:52janeirob.jpg?200 }} 9 {{:test:52janeirob.jpg?200 }} 11 {{:test:surival_guide.pdf|survival guide}} 12 {{:test:ebec_2014_tz_kdo_se_stane_nejschopnejsim_technikem_na_cvut-.docx|}}
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Extensions/ |
| D | RepeatedTestTest.php | 25 $test = new PHPUnit_Extensions_RepeatedTest($this->suite, 1); 26 $this->assertCount(2, $test); 28 $result = $test->run(); 34 $test = new PHPUnit_Extensions_RepeatedTest($this->suite, 3); 35 $this->assertCount(6, $test); 37 $result = $test->run(); 43 $test = new PHPUnit_Extensions_RepeatedTest($this->suite, 0); 44 $this->assertCount(0, $test); 46 $result = $test->run(); 53 $test = new PHPUnit_Extensions_RepeatedTest($this->suite, -1);
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | cross-document.js | 36 QUnit.test('isEqual', function(assert) { 48 QUnit.test('isEmpty', function(assert) { 54 QUnit.test('isElement', function(assert) { 60 QUnit.test('isArguments', function(assert) { 64 QUnit.test('isObject', function(assert) { 69 QUnit.test('isArray', function(assert) { 73 QUnit.test('isString', function(assert) { 77 QUnit.test('isNumber', function(assert) { 81 QUnit.test('isBoolean', function(assert) { 85 QUnit.test('isFunction', function(assert) { [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/ |
| D | simple.test | 4 {% import _self as test %} 5 {% from _self import test %} 7 {% macro test(a, b) -%} 12 {{ test.test() }} 13 {{ test() }} 14 {{ test.test(1, "c") }} 15 {{ test(1, "c") }}
|
| /plugin/sequencediagram/bower_components/lodash/test/ |
| D | test.js | 221 result = (result.length > min && !/test(?:\.js)?$/.test(last)) ? last : '../lodash.js'; 239 'isModularize': /\b(?:amd|commonjs|es|node|npm|(index|main)\.js)\b/.test(filePath), 240 'isStrict': /\bes\b/.test(filePath) || 'default' in require(filePath), 251 var isNpm = isModularize && /\bnpm\b/.test([ui.buildPath, ui.urlParams.build]); 364 return /^(?:\$\$cov_\d+\$\$)$/.test(key); 555 if (!(name == 'runInContext' || name.length == 1 || /\b_\.isBuffer\b/.test(caller))) { 766 QUnit.test('should support loading ' + basename + ' as the "lodash" module', function(assert) { 777 …QUnit.test('should support loading ' + basename + ' with the Require.js "shim" configuration optio… 787 …QUnit.test('should support loading ' + basename + ' as the "underscore" module', function(assert) { 798 QUnit.test('should support loading ' + basename + ' in a web worker', function(assert) { [all …]
|
| D | test-fp.js | 98 QUnit.test('should work with `name` and `func`', function(assert) { 109 QUnit.test('should work with `name`, `func`, and `options`', function(assert) { 124 QUnit.test('should work with an object', function(assert) { 140 QUnit.test('should work with an object and `options`', function(assert) { 157 QUnit.test('should work with lodash and `options`', function(assert) { 169 QUnit.test('should work with `runInContext` and `options`', function(assert) { 182 QUnit.test('should accept a variety of options', function(assert) { 216 QUnit.test('should respect the `cap` option', function(assert) { 228 QUnit.test('should respect the `rearg` option', function(assert) { 236 QUnit.test('should add a `placeholder` property', function(assert) { [all …]
|
| /plugin/asciidocjs/node_modules/function-bind/test/ |
| D | index.js | 3 var test = require('tape'); variable 8 test('functionBind is a function', function (t) { 13 test('non-functions', function (t) { 24 test('without a context', function (t) { 25 t.test('binds properly', function (st) { 39 t.test('binds properly, and still supplies bound arguments', function (st) { 53 t.test('returns properly', function (st) { 67 t.test('returns properly with bound arguments', function (st) { 81 t.test('called as a constructor', function (st) { 85 st.test('returns object value', function (sst) { [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/stream/ |
| D | CHANGELOG.md | 15 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-10T15:24:08+01:00) 16 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-10T13:07:59+01:00) 17 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-10T09:55:17+01:00) 19 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-07T08:22:01+01:00) 20 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-07T07:57:10+01:00) 21 * Test: Complete `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-06T08:46:14+01:00) 23 * Test: Write `Hoa\Stream` test suite. (Ivan Enderlin, 2017-02-03T12:16:29+01:00) 27 * Test: Write `Hoa\Stream\Context` test suite. (Ivan Enderlin, 2017-02-02T15:23:47+01:00) 29 * Test: Write `Hoa\Stream\Composite` test suite. (Ivan Enderlin, 2017-02-02T15:05:37+01:00) 30 * Test: Write `Hoa\Stream\Filter\Basic` test suite. (Ivan Enderlin, 2017-02-02T14:48:05+01:00) [all …]
|