From 9343053ab643d43828b052e1e4a30c9a84f6c258 Mon Sep 17 00:00:00 2001 From: mostwanted Date: Thu, 2 Jan 2014 00:04:01 +0100 Subject: [PATCH] Add @return void annotation to test methods --- Tests/Unit/Controller/TestimonialControllerTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tests/Unit/Controller/TestimonialControllerTest.php b/Tests/Unit/Controller/TestimonialControllerTest.php index 4004313..968e406 100644 --- a/Tests/Unit/Controller/TestimonialControllerTest.php +++ b/Tests/Unit/Controller/TestimonialControllerTest.php @@ -70,6 +70,7 @@ class TestimonialControllerTest extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCa /** * @test + * @return void */ public function indexActionCanBeCalled() { $this->subject->indexAction(); @@ -77,6 +78,7 @@ class TestimonialControllerTest extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCa /** * @test + * @return void */ public function indexActionPassesAllTestimonialsAsTestimonialsToView() { $allTestimonials = new ObjectStorage(); @@ -87,4 +89,4 @@ class TestimonialControllerTest extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCa $this->subject->indexAction(); } -} \ No newline at end of file +}