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