Home
last modified time | relevance | path

Searched refs:assertNotContains (Results 1 – 10 of 10) sorted by last modified time

/plugin/tag/_test/
H A Dtopic_tag.test.php25 $this->assertNotContains('tag:test2tag', p_wiki_xhtml('topic_page'), 'Page with tag and topic syntax tag which is listed in a page that is listed in the topic syntax but not on the page itself');
30 $this->assertNotContains('tag:topictag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax contains tag from a page in which it is listed in the topic syntax');
32 $this->assertNotContains('tagged_page', p_wiki_xhtml('topic_page'), 'Page that no longer contains the tag is still listed in the topic syntax (caching problems?)');
33 $this->assertNotContains('tag:mytag', p_wiki_xhtml('tagged_page'), 'Removed tag is still listed in XHTML output');
/plugin/include/_test/
H A Dlocallink_conversion.test.php
/plugin/emoji/_test/
H A Demoji_conflicts.test.php13 $this->assertNotContains('😃', p_wiki_xhtml('emoji_page'), 'Emoji without spaces.');
17 … $this->assertNotContains('😕', p_wiki_xhtml('emoji_page'), 'Emoji conflicts with path.');
21 …$this->assertNotContains('😛', p_wiki_xhtml('emoji_page'), 'Emoji conflicts with wiki path.…
25 … $this->assertNotContains(''', p_wiki_xhtml('emoji_page'), 'Emoji conflicts with monospace.');
29 …$this->assertNotContains('😉', p_wiki_xhtml('emoji_page'), 'Emoji conflicts with footnote.'…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/
H A DFilesystemTest.php37 $this->assertNotContains('Unable to find template', $e->getMessage());
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php183 …public static function assertNotContains($needle, $haystack, $message = '', $ignoreCase = false, $… function in PHPUnit_Framework_Assert
232 static::assertNotContains(
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DAssertTest.php435 $this->assertNotContains(null, null);
445 $this->assertNotContains($b, $c);
448 $this->assertNotContains($a, $c);
461 $this->assertNotContains($a, [$b]);
464 $this->assertNotContains($a, [$a]);
474 $this->assertNotContains('foo', ['bar']);
477 $this->assertNotContains('foo', ['foo']);
490 $this->assertNotContains('foo', [true]);
500 $this->assertNotContains('foo', 'bar');
503 $this->assertNotContains('foo', 'foo');
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php961 function assertNotContains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectI… function
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/
H A DSnapshotTest.php63 $this->assertNotContains('assert', $functions);
72 $this->assertNotContains('Exception', $classes);
81 $this->assertNotContains('Countable', $interfaces);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md152 …com/sebastianbergmann/phpunit/issues/2333): `assertContains()` and `assertNotContains()` do not ha…
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DAssert.php100 function assertNotContains($needle, $haystack, $message = '') { function in PHPUnit_Assert