Home
last modified time | relevance | path

Searched refs:test (Results 1 – 25 of 1253) sorted by relevance

12345678910>>...51

/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DTestCaseTest.php44 $test = new Success;
45 $result = $test->run();
56 $test = new Failure;
57 $result = $test->run();
69 $result = $test->run();
179 $test = new WasRun;
180 $test->run();
280 $test->run();
570 $test->run();
654 $test->runBare();
[all …]
H A DTestListenerTest.php23 public function addError(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);
95 $test = new Failure;
96 $test->run($this->result);
104 $test = new Success;
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dnested-lists.md87 - test
88 - test
91 - test
95 - test
96 - test
101 - test
104 - test
105 - test
109 - test
113 - test
[all …]
H A Dblockquote.md1 > test test
2 > test
4 > test
5 test
6 test
8 test
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTAP.php48 * @param PHPUnit_Framework_Test $test
54 $this->writeNotOk($test, 'Error');
60 * @param PHPUnit_Framework_Test $test
66 $this->writeNotOk($test, 'Warning');
78 $this->writeNotOk($test, 'Failure');
114 * @param PHPUnit_Framework_Test $test
126 * @param PHPUnit_Framework_Test $test
146 * @param PHPUnit_Framework_Test $test
190 * @param PHPUnit_Framework_Test $test
216 $this->writeDiagnostics($test);
[all …]
H A DJSON.php34 * @param PHPUnit_Framework_Test $test
45 $test
65 $test
85 $test
94 * @param PHPUnit_Framework_Test $test
105 $test
114 * @param PHPUnit_Framework_Test $test
125 $test
134 * @param PHPUnit_Framework_Test $test
145 $test
[all …]
H A DTeamCity.php53 * @param PHPUnit_Framework_Test $test
72 * @param PHPUnit_Framework_Test $test
98 'name' => $test->getName(),
133 * @param PHPUnit_Framework_Test $test
145 * @param PHPUnit_Framework_Test $test
151 $this->addError($test, $e, $time);
157 * @param PHPUnit_Framework_Test $test
163 $testName = $test->getName();
165 $this->startTest($test);
167 $this->endTest($test, $time);
[all …]
H A DJUnit.php117 * @param PHPUnit_Framework_Test $test
123 $this->doAddFault($test, $e, $time, 'error');
130 * @param PHPUnit_Framework_Test $test
160 * @param PHPUnit_Framework_Test $test
188 * @param PHPUnit_Framework_Test $test
216 * @param PHPUnit_Framework_Test $test
321 * @param PHPUnit_Framework_Test $test
330 $methodName = $test->getName();
347 * @param PHPUnit_Framework_Test $test
375 if (method_exists($test, 'hasOutput') && $test->hasOutput()) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php116 * @param PHPUnit_Framework_Test $test
122 if (!$this->isOfInterest($test)) {
139 if (!$this->isOfInterest($test)) {
156 if (!$this->isOfInterest($test)) {
167 * @param PHPUnit_Framework_Test $test
173 if (!$this->isOfInterest($test)) {
184 * @param PHPUnit_Framework_Test $test
190 if (!$this->isOfInterest($test)) {
201 * @param PHPUnit_Framework_Test $test
244 $class = get_class($test);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DTicketListener.php29 * @param PHPUnit_Framework_Test $test
40 * @param PHPUnit_Framework_Test $test
51 * @param PHPUnit_Framework_Test $test
62 * @param PHPUnit_Framework_Test $test
73 * @param PHPUnit_Framework_Test $test
102 * @param PHPUnit_Framework_Test $test
104 public function startTest(PHPUnit_Framework_Test $test) argument
111 $name = $test->getName(false);
125 * @param PHPUnit_Framework_Test $test
128 public function endTest(PHPUnit_Framework_Test $test, $time) argument
[all …]
H A DTestDecorator.php25 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/
H A DXML.php62 * @param PHPUnit_Framework_Test $test
74 * @param PHPUnit_Framework_Test $test
97 * @param PHPUnit_Framework_Test $test
108 * @param PHPUnit_Framework_Test $test
119 * @param PHPUnit_Framework_Test $test
148 * @param PHPUnit_Framework_Test $test
158 * @param PHPUnit_Framework_Test $test
170 $test->getGroups(),
188 $node->setAttribute('size', $test->getSize());
191 … $inlineAnnotations = PHPUnit_Util_Test::getInlineAnnotations(get_class($test), $test->getName());
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestResult.php628 $this->startTest($test);
686 $test->runBare();
690 $test,
754 $test,
792 $test,
809 $test,
818 $test,
828 $test,
858 $test,
866 $test,
[all …]
H A DTestListener.php19 * @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
50 * @param PHPUnit_Framework_Test $test
59 * @param PHPUnit_Framework_Test $test
68 * @param PHPUnit_Framework_Test $test
91 * @param PHPUnit_Framework_Test $test
93 public function startTest(PHPUnit_Framework_Test $test); argument
98 * @param PHPUnit_Framework_Test $test
[all …]
H A DTestSuite.php213 $this->tests[] = $test;
411 foreach ($this as $test) {
573 if (!isset($test)) {
578 $test->setName($name);
599 return $test;
720 foreach ($this as $test) {
733 $test->run($result);
773 $test->run($result);
864 $test->setDependencies(
870 $test,
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DescapedCharacters.yml1 test: outside double quotes
7 test: 'null'
13 test: bell
19 test: backspace
37 test: line feed
43 test: vertical tab
49 test: form feed
61 test: escape
67 test: space
73 test: slash
[all …]
H A DsfTests.yml2 test: Multiple quoted string on one line
10 test: Empty sequence
16 test: Empty value
22 test: Inline string parsing
30 test: Boolean
82 test: IP addresses
99 test: Octal
106 test: Octal strings
113 test: Octal strings
120 test: Octal strings
[all …]
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DTestResult.php113 function addError(&$test, &$t) { argument
129 function addFailure(&$test, &$t) { argument
156 function addPassedTest(&$test) { argument
157 $this->_passedTests[] = &$test;
166 function endTest(&$test) { argument
168 $this->_listeners[$i]->endTest($test);
243 function run(&$test) { argument
244 $this->startTest($test);
246 $test->runBare();
247 $this->endTest($test);
[all …]
H A DTestSuite.php108 function PHPUnit_TestSuite($test = FALSE) { argument
109 if ($test !== FALSE) {
110 $this->setName($test);
111 $this->addTestSuite($test);
121 function addTest(&$test) { argument
122 $this->_tests[] = &$test;
159 foreach ($this->_tests as $test) {
160 $count += $test->countTestCases();
195 function runTest(&$test, &$result) { argument
196 $test->run($result);
/plugin/latexit/tests/dw_orig_test_files/
H A Dtest9.txt1 [[: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/
H A DRepeatedTestTest.php25 $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/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/
H A Dsimple.test4 {% 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/vendor/underscore/test/
H A Dcross-document.js36 QUnit.test('isEqual', function(assert) {
48 QUnit.test('isEmpty', function(assert) {
54 QUnit.test('isElement', 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) {
89 QUnit.test('isDate', function(assert) {
97 QUnit.test('isNaN', function(assert) {
101 QUnit.test('isNull', function(assert) {
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js221 result = (result.length > min && !/test(?:\.js)?$/.test(last)) ? last : '../lodash.js';
364 return /^(?:\$\$cov_\d+\$\$)$/.test(key);
1070 var isLarge = /^large/.test(kind);
6982 isFind = /^find/.test(methodName),
7199 isFind = /^find/.test(methodName),
7227 isFind = /^find/.test(methodName),
13393 isIndexOf = !/last/i.test(methodName),
13394 isSorted = /^sorted/.test(methodName);
15682 isMax = /^max/.test(methodName);
20096 isUpdate = /^update/.test(methodName);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DTestExpression.php32 $test = $compiler->getEnvironment()->getTest($name);
36 $this->setAttribute('thing', $test);
37 if ($test instanceof TwigTest) {
38 $this->setAttribute('arguments', $test->getArguments());
40 if ($test instanceof \Twig_TestCallableInterface || $test instanceof TwigTest) {
41 $this->setAttribute('callable', $test->getCallable());
43 if ($test instanceof TwigTest) {
44 $this->setAttribute('is_variadic', $test->isVariadic());

12345678910>>...51