Example #1
0
 public function testGetFooter()
 {
     $tag = new Modal();
     $footer = $tag->getFooter();
     $this->assertInstanceOf(GenericTag::class, $footer);
     $this->assertEquals('<div class="modal-footer"></div>', $footer->getHTML());
 }