for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
declare(strict_types=1);
namespace Spiral\Framework\Framework;
use Spiral\Framework\ConsoleTest;
class RouteListTest extends ConsoleTest
{
public function testExtensions(): void
$output = $this->runCommand('route:list');
$this->assertContains('AuthController', $output);
}