Ejemplo n.º 1
0
 public function testGetFirstColumnId()
 {
     $projectModel = new Project($this->container);
     $columnModel = new Column($this->container);
     $this->assertEquals(1, $projectModel->create(array('name' => 'UnitTest')));
     $this->assertEquals(1, $columnModel->getFirstColumnId(1));
 }