diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-12-01 22:52:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-12-01 22:52:58 -0500 |
commit | f73d0d2ac9daee5eaa03a7b89c639678fec46467 (patch) | |
tree | 130d67dc841de8200361afb393873924caf7378c /tests/units/EventBuilder/TaskLinkEventBuilderTest.php | |
parent | be83821ef7885ca45da36f15ea7a26cbf3e33fd9 (diff) |
Make user mentions great again
Diffstat (limited to 'tests/units/EventBuilder/TaskLinkEventBuilderTest.php')
-rw-r--r-- | tests/units/EventBuilder/TaskLinkEventBuilderTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/units/EventBuilder/TaskLinkEventBuilderTest.php b/tests/units/EventBuilder/TaskLinkEventBuilderTest.php index 18508146..4e38eeb6 100644 --- a/tests/units/EventBuilder/TaskLinkEventBuilderTest.php +++ b/tests/units/EventBuilder/TaskLinkEventBuilderTest.php @@ -33,6 +33,8 @@ class TaskLinkEventBuilderTest extends Base $this->assertInstanceOf('Kanboard\Event\TaskLinkEvent', $event); $this->assertNotEmpty($event['task_link']); $this->assertNotEmpty($event['task']); + $this->assertEquals(1, $event->getTaskId()); + $this->assertEquals(1, $event->getProjectId()); } public function testBuildTitle() |