aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_functional_test_case.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-04-15 14:27:52 -0400
committerAndreas Fischer <bantu@phpbb.com>2013-04-15 14:27:52 -0400
commitfbe115b434d53b155301288a41fe8e94e1ada801 (patch)
tree433b873414db4a537bfaad944face0b856da1bb2 /tests/test_framework/phpbb_functional_test_case.php
parentb43ed1147003579337c897c9c40352992589bea5 (diff)
parent453f98f6d3528ee0598581973f8c8a9bbcdcb25a (diff)
downloadforums-fbe115b434d53b155301288a41fe8e94e1ada801.tar
forums-fbe115b434d53b155301288a41fe8e94e1ada801.tar.gz
forums-fbe115b434d53b155301288a41fe8e94e1ada801.tar.bz2
forums-fbe115b434d53b155301288a41fe8e94e1ada801.tar.xz
forums-fbe115b434d53b155301288a41fe8e94e1ada801.zip
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
Diffstat (limited to 'tests/test_framework/phpbb_functional_test_case.php')
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php3
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 db6a6066e4..15c063ec02 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -530,6 +530,9 @@ 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);
}
public function assert_filter($crawler, $expr, $msg = null)