From aef3c6010b187a3e2fc018f5854770aef5f5c16a Mon Sep 17 00:00:00 2001
From: Bernhard Posselt <nukeawhale@gmail.com>
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 0151ab331d1..3f0855de76c 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("&lt;script&gt;alert(&#039;xss&#039;);&lt;/script&gt;", $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);
-
 	}
 
 
-- 
GitLab