Remove redundant test case for non-HTML string.
This commit is contained in:
parent
f9091a8584
commit
0d3ddd9e11
|
@ -39,7 +39,9 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase {
|
|||
p($badString);
|
||||
$result = ob_get_clean();
|
||||
$this->assertEquals('<script>alert('Hacked!');</script>', $result);
|
||||
}
|
||||
|
||||
public function testPNormalString() {
|
||||
$goodString = 'This is a good string without HTML.';
|
||||
ob_start();
|
||||
p($goodString);
|
||||
|
@ -47,15 +49,6 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase {
|
|||
$this->assertEquals('This is a good string without HTML.', $result);
|
||||
}
|
||||
|
||||
public function testPNormalString() {
|
||||
$normalString = "This is a good string!";
|
||||
ob_start();
|
||||
p($normalString);
|
||||
$result = ob_get_clean();
|
||||
|
||||
$this->assertEquals("This is a good string!", $result);
|
||||
}
|
||||
|
||||
public function testPrintUnescaped() {
|
||||
$htmlString = "<script>alert('xss');</script>";
|
||||
|
||||
|
|
Loading…
Reference in New Issue