Ejemplo n.º 1
0
 public function testGetTitle()
 {
     $tag = new Collapse('foo');
     $title = $tag->getTitle();
     $this->assertInstanceOf(GenericTag::class, $title);
     $this->assertEquals('<legend' . ' data-opened-indicator="<i class=&quot;glyphicon glyphicon-chevron-down&quot;></i>"' . ' data-closed-indicator="<i class=&quot;glyphicon glyphicon-chevron-right&quot;></i>"' . '>' . '<a data-toggle="collapse"></a>' . '</legend>', $title->getHTML());
 }