public function testTableWithMultipleBodies()
 {
     $expected = '<table><caption></caption><colgroup><col span="2"><col span="1"></colgroup><thead><tr><th></th><th></th></tr></thead><tfoot><tr><th></th><td></td></tr></tfoot><tbody><tr><td></td><td></td></tr></tbody><tbody><tr><td></td><td></td></tr></tbody></table>';
     $result = Html5Gen::table(['colgroup' => ['cols' => [['span' => 2], ['span' => 1]]], 'caption' => [], 'bodies' => [['rows' => [['cells' => [[], []]]]], ['rows' => [['cells' => [[], []]]]]], 'head' => ['rows' => [['cells' => [['isHeader' => true], ['isHeader' => true]]]]], 'foot' => ['rows' => [['cells' => [['isHeader' => true], []]]]]]);
     $this->assertEquality($expected, $result);
 }