From d27bcabc8bc0ab41dbd2219519718b11f8f9ce94 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Thu, 2 Jan 2020 15:08:08 +0100 Subject: tests: code coverage cleanup --- tests/Unit/Models/NewsCommentsTest.php | 36 +++------------------------------- 1 file changed, 3 insertions(+), 33 deletions(-) (limited to 'tests/Unit/Models/NewsCommentsTest.php') diff --git a/tests/Unit/Models/NewsCommentsTest.php b/tests/Unit/Models/NewsCommentsTest.php index dfded712..1749e988 100644 --- a/tests/Unit/Models/NewsCommentsTest.php +++ b/tests/Unit/Models/NewsCommentsTest.php @@ -28,8 +28,6 @@ class NewsCommentsTest extends TestCase /** * Sets up some test objects and test data. - * - * @return void */ protected function setUp(): void { @@ -59,7 +57,7 @@ class NewsCommentsTest extends TestCase /** * Tests that a NewsComment can be created and loaded. * - * @return void + * @covers \Engelsystem\Models\NewsComment */ public function testCreate(): void { @@ -75,7 +73,7 @@ class NewsCommentsTest extends TestCase /** * Tests that accessing the User of a NewsComment works. * - * @return void + * @covers \Engelsystem\Models\NewsComment::user */ public function testUser(): void { @@ -87,7 +85,7 @@ class NewsCommentsTest extends TestCase /** * Tests that accessing the News of a NewsComment works. * - * @return void + * @covers \Engelsystem\Models\NewsComment::news */ public function testNews(): void { @@ -95,32 +93,4 @@ class NewsCommentsTest extends TestCase $this->assertInstanceOf(News::class, $newsComment->news); $this->assertSame($this->news->id, $newsComment->news->id); } - - /** - * Tests that accessing the NewsComments of a News works. - * - * @return void - */ - public function testNewsComments(): void - { - $newsComment = NewsComment::create($this->newsCommentData); - $comments = $this->news->comments; - $this->assertCount(1, $comments); - $comment = $comments->first(); - $this->assertSame($newsComment->id, $comment->id); - } - - /** - * Tests that accessing the NewsComments of an User works. - * - * @return void - */ - public function testUserNewsComments(): void - { - $newsComment = NewsComment::create($this->newsCommentData); - $comments = $this->user->newsComments; - $this->assertCount(1, $comments); - $comment = $comments->first(); - $this->assertSame($newsComment->id, $comment->id); - } } -- cgit v1.2.3-54-g00ecf