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