-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Konstantin Wagner
committed
Jan 31, 2018
1 parent
11ac915
commit 924eb23
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
/* | ||
* Copyright (c) 2018 Heimrich & Hannot GmbH | ||
* | ||
* @license LGPL-3.0-or-later | ||
*/ | ||
|
||
namespace HeimrichHannot\QuizBundle\Test; | ||
|
||
use HeimrichHannot\QuizBundle\DependencyInjection\HeimrichHannotContaoQuizExtension; | ||
use HeimrichHannot\QuizBundle\HeimrichHannotContaoQuizBundle; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class HeimrichHannotContaoQuizExtensionTest extends TestCase | ||
{ | ||
public function testGetContainerExtension() | ||
{ | ||
$bundle = new HeimrichHannotContaoQuizBundle(); | ||
|
||
$this->assertInstanceOf(HeimrichHannotContaoQuizExtension::class, $bundle->getContainerExtension()); | ||
} | ||
} |