From 7f13766570fbf573282520c39a7b0e7ed32593cb Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 8 Oct 2020 15:12:24 +0200 Subject: [PATCH] fix tests and replace file_exists --- tests/Models/EventTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/Models/EventTest.php b/tests/Models/EventTest.php index 6e131e8..f181d52 100755 --- a/tests/Models/EventTest.php +++ b/tests/Models/EventTest.php @@ -25,6 +25,10 @@ use phpOMS\Localization\Money; */ class EventTest extends \PHPUnit\Framework\TestCase { + /** + * @covers Modules\EventManagement\Models\Event + * @group module + */ public function testDefault() : void { $event = new Event(); @@ -43,6 +47,10 @@ class EventTest extends \PHPUnit\Framework\TestCase self::assertEquals(ProgressType::MANUAL, $event->getProgressType()); } + /** + * @covers Modules\EventManagement\Models\Event + * @group module + */ public function testSetGet() : void { $event = new Event();