execution test case

This commit is contained in:
lanzongjun
2022-09-22 13:22:21 +08:00
parent 85ff42bf33
commit 378ec2a0c9
2 changed files with 40 additions and 0 deletions
+16
View File
@@ -2382,4 +2382,20 @@ class executionTest
return $tester->app->user->view->sprints;
}
}
/**
* Create default sprint.
*
* @param int $projectID
* @access public
* @return int
*/
public function createDefaultSprintTest($projectID)
{
$result = $this->objectModel->createDefaultSprint($projectID);
if(dao::isError()) return dao::getError();
return $result;
}
}