for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Debril\RssAtomBundle\Tests\DependencyInjection;
use Debril\RssAtomBundle\DependencyInjection\Configuration;
use PHPUnit\Framework\TestCase;
class ConfigurationTest extends TestCase
{
public function testGetConfigTreeBuilder()
$configuration = new Configuration();
$tree = $configuration->getConfigTreeBuilder();
$this->assertInstanceOf('\Symfony\Component\Config\Definition\Builder\TreeBuilder', $tree);
}