Exemplo n.º 1
0
 public function test()
 {
     $element = new Element('ul', ['role' => 'menu']);
     $element->append(new Element('li'));
     $element->append(new Element('li'));
     $html = $element->formatRender();
     $this->assertNotNull($html);
 }