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