mirror of
https://github.com/yiisoft/app.git
synced 2026-03-08 00:56:50 +01:00
25 lines
530 B
PHP
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!');
|
|
}
|
|
}
|