From 64303b35b228fcbfca7ebb9a66d1759808ce427e Mon Sep 17 00:00:00 2001 From: mostwanted Date: Thu, 2 Jan 2014 00:03:30 +0100 Subject: [PATCH] Add @return void annotation to test methods --- Tests/Unit/Domain/Repository/TestimonialRepositoryTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/Unit/Domain/Repository/TestimonialRepositoryTest.php b/Tests/Unit/Domain/Repository/TestimonialRepositoryTest.php index 185d73b..f8fe1ef 100644 --- a/Tests/Unit/Domain/Repository/TestimonialRepositoryTest.php +++ b/Tests/Unit/Domain/Repository/TestimonialRepositoryTest.php @@ -53,10 +53,11 @@ class TestimonialRepositoryTest extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCa /** * @test + * @return void */ public function canBeInstantiated() { $this->assertNotNull( $this->subject ); } -} \ No newline at end of file +}