コード例 #1
0
 public function testBadProject()
 {
     $action = new TaskDuplicateAnotherProject($this->container, 3, Task::EVENT_MOVE_COLUMN);
     $action->setParam('column_id', 5);
     $event = array('project_id' => 2, 'task_id' => 3, 'column_id' => 5);
     $this->assertFalse($action->isExecutable($event));
     $this->assertFalse($action->execute(new GenericEvent($event)));
 }