Esempio n. 1
0
 public function testConstructor()
 {
     $tag = new GenericTag('foo', 'bar');
     $this->assertEquals('<foo>bar</foo>', $tag->getHTML());
     $tag = new GenericTag('foo', ['bar', 'baz', 'bax']);
     $this->assertEquals('<foo>barbazbax</foo>', $tag->getHTML());
 }