Ejemplo n.º 1
0
 public function testGetTitleByColumnId()
 {
     $projectModel = new Project($this->container);
     $columnModel = new Column($this->container);
     $this->assertEquals(1, $projectModel->create(array('name' => 'UnitTest')));
     $this->assertEquals('Work in progress', $columnModel->getColumnTitleById(3));
 }