diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-04-15 13:15:03 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-04-15 13:15:03 -0400 |
commit | 453f98f6d3528ee0598581973f8c8a9bbcdcb25a (patch) | |
tree | 8b49bb37a273b816df3f198b11845a8fe4660720 | |
parent | 0ce94fde77ac61ce5be07f55242802d3dee784f2 (diff) | |
parent | 14071e6085d55f459728ade117ff93b3957045d2 (diff) | |
download | forums-453f98f6d3528ee0598581973f8c8a9bbcdcb25a.tar forums-453f98f6d3528ee0598581973f8c8a9bbcdcb25a.tar.gz forums-453f98f6d3528ee0598581973f8c8a9bbcdcb25a.tar.bz2 forums-453f98f6d3528ee0598581973f8c8a9bbcdcb25a.tar.xz forums-453f98f6d3528ee0598581973f8c8a9bbcdcb25a.zip |
Merge remote-tracking branch 'dhruvgoel92/ticket/11493' into develop-olympus
* dhruvgoel92/ticket/11493:
[ticket/11493] add checks for Notice and Warning
[ticket/11493] add check for phpBB Debug in functional tests
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 8ab6469e9a..83c931f924 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -349,5 +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); } } |