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