Home
last modified time | relevance | path

Searched refs:tests (Results 226 – 250 of 323) sorted by path

12345678910>>...13

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DLexerTest.php179 $tests = [
184 foreach ($tests as $template => $expected) {
H A DTemplateTest.php373 $tests = [];
385 $tests[] = [$test[0], $test[1], $testObject[0], $test[2], [], $testObject[1]];
390 $tests = array_merge($tests, [
395 $tests = array_merge($tests, [
408 foreach ($tests as $test) {
411 $tests[] = $test;
418 $tests = array_merge($tests, [
435 $tests = array_merge($tests, [
440 $tests = array_merge($tests, [
446 return $tests;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DDeprecatedTest.php33 $tests = [];
39 $tests[] = [$node, <<<EOF
52 $tests[] = [$node, <<<EOF
71 $tests[] = [$node, <<<EOF
78 return $tests;
H A DDoTest.php28 $tests = [];
32 $tests[] = [$node, "// line 1\n\"foo\";"];
34 return $tests;
H A DForTest.php49 $tests = [];
60 $tests[] = [$node, <<<EOF
82 $tests[] = [$node, <<<EOF
125 $tests[] = [$node, <<<EOF
158 $tests[] = [$node, <<<EOF
197 return $tests;
H A DIfTest.php40 $tests = [];
49 $tests[] = [$node, <<<EOF
66 $tests[] = [$node, <<<EOF
83 $tests[] = [$node, <<<EOF
93 return $tests;
H A DImportTest.php31 $tests = [];
37 $tests[] = [$node, <<<EOF
43 return $tests;
H A DIncludeTest.php37 $tests = [];
41 $tests[] = [$node, <<<EOF
54 $tests[] = [$node, <<<EOF
63 $tests[] = [$node, <<<EOF
70 $tests[] = [$node, <<<EOF
77 $tests[] = [$node, <<<EOF
87 return $tests;
H A DModuleTest.php47 $tests = [];
57 $tests[] = [$node, <<<EOF
122 $tests[] = [$node, <<<EOF
204 $tests[] = [$node, <<<EOF
266 return $tests;
H A DPrintTest.php28 $tests = [];
29 $tests[] = [new PrintNode(new ConstantExpression('foo', 1), 1), "// line 1\necho \"foo\";"];
31 return $tests;
H A DSandboxTest.php28 $tests = [];
33 $tests[] = [$node, <<<EOF
45 return $tests;
H A DSetTest.php36 $tests = [];
41 $tests[] = [$node, <<<EOF
50 $tests[] = [$node, <<<EOF
61 $tests[] = [$node, <<<EOF
70 $tests[] = [$node, <<<EOF
76 return $tests;
H A DTextTest.php26 $tests = [];
27 $tests[] = [new TextNode('foo', 1), "// line 1\necho \"foo\";"];
29 return $tests;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DConditionalTest.php32 $tests = [];
38 $tests[] = [$node, '((1) ? (2) : (3))'];
40 return $tests;
H A DConstantTest.php26 $tests = [];
29 $tests[] = [$node, '"foo"'];
31 return $tests;
H A DFilterTest.php39 $tests = [];
48 … $tests[] = [$node, 'twig_number_format_filter($this->env, strtoupper("foo"), 2, ".", ",")'];
57 … $tests[] = [$node, 'twig_date_format_filter($this->env, 0, "d/m/Y H:i:s P", "America/Chicago")'];
64 $tests[] = [$node, 'twig_date_format_filter($this->env, 0, null, "America/Chicago")'];
71 $tests[] = [$node, 'twig_reverse_filter($this->env, "abc", true)'];
75 $tests[] = [$node, 'twig_reverse_filter($this->env, "abc", true)'];
85 $tests[] = [$node, 'bar($this->env, "abc")', $environment];
88 $tests[] = [$node, 'bar($this->env, "abc", "bar")', $environment];
92 $tests[] = [$node, 'twig_tests_filter_barbar($context, "abc")', $environment];
98 $tests[] = [$node, 'twig_tests_filter_barbar($context, "abc", null, "bar")', $environment];
[all …]
H A DFunctionTest.php40 $tests = [];
43 $tests[] = [$node, 'foo()', $environment];
46 $tests[] = [$node, 'foo("bar", "foobar")', $environment];
49 $tests[] = [$node, 'bar($this->env)', $environment];
52 $tests[] = [$node, 'bar($this->env, "bar")', $environment];
55 $tests[] = [$node, 'foofoo($context)', $environment];
58 $tests[] = [$node, 'foofoo($context, "bar")', $environment];
61 $tests[] = [$node, 'foobar($this->env, $context)', $environment];
64 $tests[] = [$node, 'foobar($this->env, $context, "bar")', $environment];
75 $tests[] = [$node, 'twig_tests_function_barbar()', $environment];
[all …]
H A DGetAttrTest.php38 $tests = [];
44 …$tests[] = [$node, sprintf('%s%s, "bar", [])', $this->getAttributeGetter(), $this->getVariableGett…
47 …$tests[] = [$node, sprintf('%s%s, "bar", [], "array")', $this->getAttributeGetter(), $this->getVar…
53 …$tests[] = [$node, sprintf('%s%s, "bar", [0 => %s, 1 => "bar"], "method")', $this->getAttributeGet…
55 return $tests;
H A DNullCoalesceTest.php21 $tests = [];
27 $tests[] = [$node, "((// line 1\n\$context[\"foo\"]) ?? (2))"];
29 …$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$contex…
31 …$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$contex…
34 return $tests;
H A DParentTest.php26 $tests = [];
27 … $tests[] = [new ParentExpression('foo', 1), '$this->renderParentBlock("foo", $context, $blocks)'];
29 return $tests;
H A DTestTest.php39 $tests = [];
43 $tests[] = [$node, '(null === "foo")'];
48 …$tests[] = [$node, 'call_user_func_array($this->env->getTest(\'anonymous\')->getCallable(), ["foo"…
54 $tests[] = [$node, 'twig_tests_test_barbar("abc")', $environment];
57 … $tests[] = [$node, 'twig_tests_test_barbar("abc", null, null, ["foo" => "bar"])', $environment];
60 $tests[] = [$node, 'twig_tests_test_barbar("abc", null, "bar")', $environment];
68 …$tests[] = [$node, 'twig_tests_test_barbar("abc", "1", "2", [0 => "3", "foo" => "bar"])', $environ…
70 return $tests;
/plugin/findologicxmlexport/vendor/webmozart/assert/
H A DCHANGELOG.md64 * add tests for minimum package dependencies on Travis CI
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DTestSuite.php240 function &tests() { function in PHPUnit_TestSuite
/plugin/freechat/phpfreechat/lib/pear/
H A Dpearrc2 a:5:{s:8:"test_dir";s:7:"./tests";s:8:"data_dir";s:6:"./data";s:7:"php_dir";s:1:".";s:7:"doc_dir";s…
/plugin/gtime/gtlib/
H A DREADME42 $ phing test # Run all unit tests

12345678910>>...13