Skip to content

Commit

Permalink
added tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Wagner committed Jan 31, 2018
1 parent 11ac915 commit 924eb23
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tests/HeimrichHannotContaoQuizExtensionTest.php
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());
}
}

0 comments on commit 924eb23

Please sign in to comment.