Ejemplo n.º 1
0
 public function test_set_start_column()
 {
     $column = $this->table->setStartColumn();
     $this->assertEquals('A', $column);
     $this->table->incrementLevel();
     $this->table->nextColumn();
     $column = $this->table->setStartColumn();
     $this->assertEquals('B', $column);
     $this->assertCount(2, $this->table->getNested());
 }