diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-24 22:41:13 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-24 22:41:21 -0400 |
commit | a2e5d022e5fd652c7e37e9d9550deb3cf2cb41c8 (patch) | |
tree | 4564133b9c4545c585384d196c77d2561d8c79d4 /tests/units/Model/ProjectDuplicationTest.php | |
parent | 5b30cd43d4c4197f40fde979e4afdd4ff2518442 (diff) |
Clean up unit tests
Diffstat (limited to 'tests/units/Model/ProjectDuplicationTest.php')
-rw-r--r-- | tests/units/Model/ProjectDuplicationTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/units/Model/ProjectDuplicationTest.php b/tests/units/Model/ProjectDuplicationTest.php index 14db80bf..4023a28f 100644 --- a/tests/units/Model/ProjectDuplicationTest.php +++ b/tests/units/Model/ProjectDuplicationTest.php @@ -205,7 +205,6 @@ class ProjectDuplicationTest extends Base public function testCloneProjectWithUsers() { $p = new Project($this->container); - $c = new Category($this->container); $pp = new ProjectUserRole($this->container); $u = new User($this->container); $pd = new ProjectDuplication($this->container); @@ -231,7 +230,6 @@ class ProjectDuplicationTest extends Base public function testCloneProjectWithUsersAndOverrideOwner() { $p = new Project($this->container); - $c = new Category($this->container); $pp = new ProjectUserRole($this->container); $u = new User($this->container); $pd = new ProjectDuplication($this->container); @@ -258,7 +256,6 @@ class ProjectDuplicationTest extends Base public function testCloneTeamProjectToPrivatProject() { $p = new Project($this->container); - $c = new Category($this->container); $pp = new ProjectUserRole($this->container); $u = new User($this->container); $pd = new ProjectDuplication($this->container); @@ -287,7 +284,6 @@ class ProjectDuplicationTest extends Base public function testCloneProjectWithGroups() { $p = new Project($this->container); - $c = new Category($this->container); $pd = new ProjectDuplication($this->container); $userModel = new User($this->container); $groupModel = new Group($this->container); @@ -420,7 +416,6 @@ class ProjectDuplicationTest extends Base { $p = new Project($this->container); $pd = new ProjectDuplication($this->container); - $s = new Swimlane($this->container); $tc = new TaskCreation($this->container); $tf = new TaskFinder($this->container); |