config->set('AutoFormat.Custom', array(new HTMLPurifier_Injector_SafeObject())); $this->config->set('HTML.Trusted', true); } public function testPreserve() { $this->assertResult( 'asdf' ); } public function testRemoveStrayParam() { $this->assertResult( '', '' ); } public function testEditObjectParam() { $this->assertResult( '', '' ); } public function testIgnoreStrayParam() { $this->assertResult( '', '' ); } public function testIgnoreDuplicates() { $this->assertResult( '' ); } public function testIgnoreBogusData() { $this->assertResult( '', '' ); } public function testIgnoreInvalidData() { $this->assertResult( '', '' ); } public function testKeepValidData() { $this->assertResult( '', '' ); } public function testNested() { $this->assertResult( '', '' ); } public function testNotActuallyNested() { $this->assertResult( '

', '

' ); } public function testCaseInsensitive() { $this->assertResult( '' ); } } // vim: et sw=4 sts=4