obj = new HTMLPurifier_Strategy_Core(); } public function testBlankInput() { $this->assertResult(''); } public function testMakeWellFormed() { $this->assertResult( 'Make well formed.', 'Make well formed.' ); } public function testFixNesting() { $this->assertResult( '
Fix nesting.
', '
Fix nesting.
' ); } public function testRemoveForeignElements() { $this->assertResult( 'Foreign element removal.', 'Foreign element removal.' ); } public function testFirstThree() { $this->assertResult( '
All three.
', '
All three.
' ); } } // vim: et sw=4 sts=4