for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace TomCizek\SymfonyProoph\Tests;
use Prooph\InteropBundle\ProophInteropBundle;
use TomCizek\SymfonyProoph\ProophBundle;
use TomCizek\SymfonyProoph\Tests\Configurators\ProophTestCase;
class ProophBundleTest extends ProophTestCase
{
public function testBuild_ByTestKernelWithThisBundle_ShouldPass()
$this->whenBootWithBundle();
$this->thenPass();
}
protected function whenBootWithBundle()
$this->bootKernelWith(
[
ProophInteropBundle::class,
ProophBundle::class,
]
);