summaryrefslogtreecommitdiff
path: root/tests/Unit/Models/MessageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Models/MessageTest.php')
-rw-r--r--tests/Unit/Models/MessageTest.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/Unit/Models/MessageTest.php b/tests/Unit/Models/MessageTest.php
index 11af9a83..7fb3e028 100644
--- a/tests/Unit/Models/MessageTest.php
+++ b/tests/Unit/Models/MessageTest.php
@@ -76,6 +76,8 @@ class MessageTest extends TestCase
/**
* Tests that loading Messages works.
*
+ * @covers \Engelsystem\Models\Message::__construct
+ *
* @return void
*/
public function testLoad(): void
@@ -96,6 +98,8 @@ class MessageTest extends TestCase
/**
* Tests that the Messages have the correct senders.
*
+ * @covers \Engelsystem\Models\Message::user
+ *
* @return void
*/
public function testSenders(): void
@@ -108,6 +112,8 @@ class MessageTest extends TestCase
/**
* Tests that the Messages have the correct receivers.
*
+ * @covers \Engelsystem\Models\Message::receiver
+ *
* @return void
*/
public function testReceivers(): void
@@ -120,6 +126,8 @@ class MessageTest extends TestCase
/**
* Tests that the Users have the correct sent Messages.
*
+ * @covers \Engelsystem\Models\User\User::messagesSent
+ *
* @return void
*/
public function testUserSentMessages(): void
@@ -137,6 +145,8 @@ class MessageTest extends TestCase
/**
* Tests that the Users have the correct received Messages.
*
+ * @covers \Engelsystem\Models\User\User::messagesReceived
+ *
* @return void
*/
public function testUserReceivedMessages(): void
@@ -153,6 +163,8 @@ class MessageTest extends TestCase
/**
* Tests that the user have the correct Messages.
+ *
+ * @covers \Engelsystem\Models\User\User::messages
*/
public function testUserMessages(): void
{