assertTrue($tag->isAllowed('p', array('class' => 'test'))); $this->assertTrue($tag->isAllowed('img', array('class' => 'test'))); $this->assertFalse($tag->isAllowed('script', array('class' => 'test'))); $this->assertFalse($tag->isAllowed('img', array('width' => '1', 'height' => '1'))); } public function testHtml() { $tag = new Tag; $this->assertEquals('

', $tag->openHtmlTag('p')); $this->assertEquals('truc', $tag->openHtmlTag('img', 'src="test" alt="truc"')); $this->assertEquals('', $tag->openHtmlTag('img')); $this->assertEquals('
', $tag->openHtmlTag('br')); $this->assertEquals('

', $tag->closeHtmlTag('p')); $this->assertEquals('', $tag->closeHtmlTag('img')); $this->assertEquals('', $tag->closeHtmlTag('br')); } }