diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-14 14:50:04 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-14 14:50:04 -0400 |
commit | d8b60ca0fa8d2e1fb3fa711dd24be16e01097654 (patch) | |
tree | e05db4cfa82292901cedff95cdb255972707deae /tests | |
parent | 50b354851f6549bca084d79291749020d5fb4588 (diff) |
Update test case, ChangeLog and contributors
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Helper/TaskHelperTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/units/Helper/TaskHelperTest.php b/tests/units/Helper/TaskHelperTest.php index 454da553..2e2da6ee 100644 --- a/tests/units/Helper/TaskHelperTest.php +++ b/tests/units/Helper/TaskHelperTest.php @@ -9,6 +9,7 @@ class TaskHelperTest extends Base public function testSelectPriority() { $helper = new TaskHelper($this->container); + $this->assertNotEmpty($helper->selectPriority(array('priority_end' => '1', 'priority_start' => '5', 'priority_default' => '2'), array())); $this->assertNotEmpty($helper->selectPriority(array('priority_end' => '3', 'priority_start' => '1', 'priority_default' => '2'), array())); $this->assertEmpty($helper->selectPriority(array('priority_end' => '3', 'priority_start' => '3', 'priority_default' => '2'), array())); } |