for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TMV\Laminas\Messenger\Test;
use PHPUnit\Framework\TestCase;
use TMV\Laminas\Messenger\Module;
class ModuleTest extends TestCase
{
public function testGetConfig(): void
$module = new Module();
$config = $module->getConfig();
$this->assertArrayHasKey('service_manager', $config);
$this->assertArrayNotHasKey('dependencies', $config);
}