Esempio n. 1
0
 public function testEmptyTable()
 {
     $table = new Table();
     $table->setHead(new Row(['id']));
     $this->assertCount(0, iterator_to_array($table));
 }