From aef3c6010b187a3e2fc018f5854770aef5f5c16a Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 30 Oct 2012 17:30:39 +0100 Subject: [PATCH] splitted two tests with two assertions each into four tests with one assertion --- tests/lib/template.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/lib/template.php b/tests/lib/template.php index 0151ab331d..3f0855de76 100644 --- a/tests/lib/template.php +++ b/tests/lib/template.php @@ -30,17 +30,19 @@ class Test_TemplateFunctions extends UnitTestCase { ob_start(); p($htmlString); $result = ob_get_clean(); + ob_end_clean(); $this->assertEqual("<script>alert('xss');</script>", $result); + } - ob_end_clean(); + public function testPNormalString(){ $normalString = "This is a good string!"; ob_start(); p($normalString); $result = ob_get_clean(); + ob_end_clean(); $this->assertEqual("This is a good string!", $result); - } @@ -50,17 +52,19 @@ class Test_TemplateFunctions extends UnitTestCase { ob_start(); print_unescaped($htmlString); $result = ob_get_clean(); + ob_end_clean(); $this->assertEqual($htmlString, $result); + } - ob_end_clean(); + public function testPrintUnescapedNormalString(){ $normalString = "This is a good string!"; ob_start(); p($normalString); $result = ob_get_clean(); + ob_end_clean(); $this->assertEqual("This is a good string!", $result); - }