12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * This file is part of cocur/slugify.
- *
- * (c) Florian Eckerstorfer <florian@eckerstorfer.co>
- *
- * 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 <florian@eckerstorfer.co>
- * @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());
- }
- }
|