runShellCommand($command); $I->seeInShellOutput('Yii Console'); } public function testCommandHello(CliTester $I): void { $command = dirname(__DIR__, 2) . '/yii'; $I->runShellCommand($command . ' hello'); $I->seeInShellOutput('Hello!'); } }