From ac8c31e5255b84a04601439b540d279fbc025a46 Mon Sep 17 00:00:00 2001 From: magdev Date: Wed, 5 Jun 2019 10:15:11 +0200 Subject: [PATCH] added comments --- tests/ApplicationTest.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/ApplicationTest.php b/tests/ApplicationTest.php index 5c24235..7e3767b 100644 --- a/tests/ApplicationTest.php +++ b/tests/ApplicationTest.php @@ -37,18 +37,33 @@ use Magdev\Dossier\Service\GitService; class ApplicationTest extends TestCase { + /** + * @var \Magdev\Dossier\Application + */ private $app = null; + + /** + * Setup TestCase + */ public function setup(): void { $this->app = new Application(); } + + /** + * @group core + */ public function testGetContainer() { $this->assertInstanceOf(ContainerBuilder::class, $this->app->getContainer()); } + + /** + * @group core + */ public function testGetValidService() { $this->assertInstanceOf(GitService::class, $this->app->getService('git'));