Home
last modified time | relevance | path

Searched refs:getContent (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/_test/tests/test/
Dscope.test.php14 strpos($response->getContent(), 'DokuWiki') >= 0,
26 strpos($response->getContent(), 'DokuWiki') >= 0,
38 strpos($response->getContent(), 'DokuWiki') >= 0,
45 strpos($response->getContent(), 'DokuWiki') >= 0,
Dbasic.test.php36 strpos($response->getContent(), 'DokuWiki') !== false,
63 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false);
87 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false);
119 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false);
177 $this->assertTrue(strpos($response->getContent(), 'Netiquette') !== false);
Dedit_and_save.test.php25 $content = $response->getContent();
58 $content = $response->getContent();
108 $content = $response->getContent();
141 $content = $response->getContent();
/dokuwiki/_test/tests/lib/exe/
Dajax_requests.test.php41 $this->assertNotEquals("AJAX call '$call' unknown!\n", $response->getContent());
44 $this->assertMatchesRegularExpression($regexp, $response->getContent());
51 $this->assertEquals('', $response->getContent());
58 $this->assertEquals("AJAX call '$call' unknown!\n", $response->getContent());
120 $this->assertEquals("captured event BEFORE\ncaptured event AFTER", $response->getContent());
Dfetch_imagetoken.test.php53 $this->assertTrue((bool)($response->getContent()));
91 $this->assertEquals(strlen($response->getContent()), $bytes);
/dokuwiki/_test/core/
DTestResponse.php40 public function getContent() { function in TestResponse