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\AsynchronousMessages;
class AsynchronousEventProducerConfiguratorTest extends AbstractAsynchronousProducerConfiguratorTestCase
{
const FIXTURE_CONFIG_FILE = 'AsynchronousMessages/AsynchronousEventProducerTest.yml';
const EXPECTED_SERVICE_NAME = 'prooph.asynchronous_messaging.events';
protected function getConfigFile()
return self::FIXTURE_CONFIG_FILE;
}
protected function getExpectedServiceName()
return self::EXPECTED_SERVICE_NAME;