for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the BenGorUser package.
*
* (c) Beñat Espiña <[email protected]>
* (c) Gorka Laucirica <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace spec\BenGorUser\SwiftMailerBridgeBundle\DependencyInjection;
use BenGorUser\SwiftMailerBridgeBundle\DependencyInjection\SwiftMailerBridgeExtension;
use PhpSpec\ObjectBehavior;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
/**
* Spec file of SwiftMailerBridgeExtension class.
* @author Beñat Espiña <[email protected]>
class SwiftMailerBridgeExtensionSpec extends ObjectBehavior
{
function it_is_initializable()
$this->shouldHaveType(SwiftMailerBridgeExtension::class);
}
function it_extends_extension()
$this->shouldHaveType(Extension::class);
function it_loads(ContainerBuilder $container)
$this->load([], $container);