mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/11493] add checks for Notice and Warning [ticket/11493] add check for phpBB Debug in functional tests
This commit is contained in:
commit
fbe115b434
1 changed files with 3 additions and 0 deletions
|
@ -530,6 +530,9 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||||
$this->assertEquals(200, $this->client->getResponse()->getStatus());
|
$this->assertEquals(200, $this->client->getResponse()->getStatus());
|
||||||
$content = $this->client->getResponse()->getContent();
|
$content = $this->client->getResponse()->getContent();
|
||||||
$this->assertNotContains('Fatal error:', $content);
|
$this->assertNotContains('Fatal error:', $content);
|
||||||
|
$this->assertNotContains('Notice:', $content);
|
||||||
|
$this->assertNotContains('Warning:', $content);
|
||||||
|
$this->assertNotContains('[phpBB Debug]', $content);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function assert_filter($crawler, $expr, $msg = null)
|
public function assert_filter($crawler, $expr, $msg = null)
|
||||||
|
|
Loading…
Add table
Reference in a new issue