* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cocur\Slugify\Tests\Bridge\Symfony; use Cocur\Slugify\Bridge\Symfony\CocurSlugifyBundle; use Cocur\Slugify\Bridge\Symfony\CocurSlugifyExtension; use Mockery\Adapter\Phpunit\MockeryTestCase; /** * CocurSlugifyBundleTest * * @category test * @package cocur/slugify * @subpackage bridge * @author Florian Eckerstorfer * @copyright 2012-2014 Florian Eckerstorfer * @license http://www.opensource.org/licenses/MIT The MIT License * @group unit */ class CocurSlugifyBundleTest extends MockeryTestCase { /** * @covers \Cocur\Slugify\Bridge\Symfony\CocurSlugifyBundle::getContainerExtension() */ public function testGetContainerExtension() { $bundle = new CocurSlugifyBundle(); static::assertInstanceOf(CocurSlugifyExtension::class, $bundle->getContainerExtension()); } }