/**
  * testAddColumn
  */
 public function testAddColumn()
 {
     $this->service->addColumn('test', '123');
     $this->assertEquals(array('test' => '123'), $this->service->getColumns());
 }