コード例 #1
0
ファイル: TableTest.php プロジェクト: enlitepro/enlite-admin
 public function testEmptyTable()
 {
     $table = new Table();
     $table->setHead(new Row(['id']));
     $this->assertCount(0, iterator_to_array($table));
 }