1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-27 11:04:15 +02:00

[ticket/11493] add checks for Notice and Warning

PHPBB3-11493
This commit is contained in:
Dhruv 2013-04-15 22:02:21 +05:30
parent 82a630cd64
commit 14071e6085

View File

@ -349,6 +349,8 @@ class phpbb_functional_test_case extends phpbb_test_case
$this->assertEquals(200, $this->client->getResponse()->getStatus());
$content = $this->client->getResponse()->getContent();
$this->assertNotContains('Fatal error:', $content);
$this->assertNotContains('Notice:', $content);
$this->assertNotContains('Warning:', $content);
$this->assertNotContains('[phpBB Debug]', $content);
}
}