Skip to content
This repository has been archived by the owner on May 28, 2020. It is now read-only.

Commit

Permalink
Merge f50ac57 into d39658f
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Aug 20, 2019
2 parents d39658f + f50ac57 commit c988375
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/Core23TwigFormatterBundleTest.php
@@ -0,0 +1,24 @@
<?php

/*
* (c) Christian Gripp <mail@core23.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Core23\TwigFormatterBundle\Tests;

use Core23\TwigFormatterBundle\Core23TwigFormatterBundle;
use Core23\TwigFormatterBundle\DependencyInjection\Core23TwigFormatterExtension;
use PHPUnit\Framework\TestCase;

class Core23TwigFormatterBundleTest extends TestCase
{
public function testGetContainerExtension(): void
{
$bundle = new Core23TwigFormatterBundle();

static::assertInstanceOf(Core23TwigFormatterExtension::class, $bundle->getContainerExtension());
}
}

0 comments on commit c988375

Please sign in to comment.