for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Tests\Cli;
use App\Tests\Support\CliTester;
final class ConsoleCest
{
public function testCommandYii(CliTester $I): void
$command = dirname(__DIR__, 2) . '/yii';
$I->runShellCommand($command);
$I->seeInShellOutput('Yii Console');
}