config->set('HTML', 'Trusted', true); $this->config->set('Output', 'CommentScriptContents', false); } function testDefaultRemoval() { $this->config->set('HTML', 'Trusted', false); $this->assertResult( '', '' ); } function testPreserve() { $this->assertResult( '' ); } function testCDATAEnclosure() { $this->assertResult( '' ); } function testAllAttributes() { $this->assertResult( '' ); } function testUnsupportedAttributes() { $this->assertResult( '', '' ); } }