for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Beelab\SimplePageBundle\Tests\DependencyInjection;
use Beelab\SimplePageBundle\DependencyInjection\Configuration;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
/**
* @group unit
*/
final class ConfigurationTest extends TestCase
{
public function testGetConfigTreeBuilder(): void
$configuration = new Configuration();
$this->assertInstanceOf(TreeBuilder::class, $configuration->getConfigTreeBuilder());
}