Files
yii3-app/tests/Cli/ConsoleCest.php
2022-05-03 19:32:18 +03:00

25 lines
530 B
PHP

<?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');
}
public function testCommandHello(CliTester $I): void
{
$command = dirname(__DIR__, 2) . '/yii';
$I->runShellCommand($command . ' hello');
$I->seeInShellOutput('Hello!');
}
}