config->set('HTML.DefinitionID', 'HTMLPurifier_HTMLModule_SafeObjectTest');
        $this->config->set('HTML.SafeObject', true);
    }
    public function testMinimal()
    {
        $this->assertResult(
            '',
            ''
        );
    }
    public function testYouTube()
    {
        // embed is purposely removed
        $this->assertResult(
            '',
            ''
        );
    }
    public function testMalicious()
    {
        $this->assertResult(
            '',
            ''
        );
    }
    public function testFull()
    {
        $this->assertResult(
            ''
        );
    }
    public function testFullScreen()
    {
        $this->config->set('HTML.FlashAllowFullScreen', true);
        $this->assertResult(
            ''
        );
    }
}
// vim: et sw=4 sts=4