diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-13 22:19:17 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-13 22:19:17 -0400 |
commit | 9c9ed02cd7ebc5dbbc99bcaed6f80988ce8a9677 (patch) | |
tree | c58789631d8f729dca8dbbf4108670e567dc25b4 /tests/units/Action/TaskMoveAnotherProjectTest.php | |
parent | 7bfa38d93c7342fc5dc04722e7bc282f165b8cd4 (diff) |
Change namespace to add Kanboard as prefix
Diffstat (limited to 'tests/units/Action/TaskMoveAnotherProjectTest.php')
-rw-r--r-- | tests/units/Action/TaskMoveAnotherProjectTest.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/units/Action/TaskMoveAnotherProjectTest.php b/tests/units/Action/TaskMoveAnotherProjectTest.php index 78bc6570..93ee3b94 100644 --- a/tests/units/Action/TaskMoveAnotherProjectTest.php +++ b/tests/units/Action/TaskMoveAnotherProjectTest.php @@ -2,17 +2,18 @@ require_once __DIR__.'/../Base.php'; -use Event\GenericEvent; -use Model\Task; -use Model\TaskCreation; -use Model\TaskFinder; -use Model\Project; - -class TaskMoveAnotherProject extends Base +use Kanboard\Event\GenericEvent; +use Kanboard\Model\Task; +use Kanboard\Model\TaskCreation; +use Kanboard\Model\TaskFinder; +use Kanboard\Model\Project; +use Kanboard\Action\TaskMoveAnotherProject; + +class TaskMoveAnotherProjectTest extends Base { public function testBadProject() { - $action = new Action\TaskMoveAnotherProject($this->container, 3, Task::EVENT_MOVE_COLUMN); + $action = new TaskMoveAnotherProject($this->container, 3, Task::EVENT_MOVE_COLUMN); $action->setParam('column_id', 5); $event = array( @@ -27,7 +28,7 @@ class TaskMoveAnotherProject extends Base public function testBadColumn() { - $action = new Action\TaskMoveAnotherProject($this->container, 3, Task::EVENT_MOVE_COLUMN); + $action = new TaskMoveAnotherProject($this->container, 3, Task::EVENT_MOVE_COLUMN); $action->setParam('column_id', 5); $event = array( @@ -41,7 +42,7 @@ class TaskMoveAnotherProject extends Base public function testExecute() { - $action = new Action\TaskMoveAnotherProject($this->container, 1, Task::EVENT_MOVE_COLUMN); + $action = new TaskMoveAnotherProject($this->container, 1, Task::EVENT_MOVE_COLUMN); // We create a task in the first column $tc = new TaskCreation($this->container); |