ConsoleCest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
c 0
b 0
f 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCommandYii() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Tests\Cli;
6
7
use App\Tests\Support\CliTester;
8
9
final class ConsoleCest
10
{
11
    public function testCommandYii(CliTester $I): void
12
    {
13
        $command = dirname(__DIR__, 2) . '/yii';
14
        $I->runShellCommand($command);
15
        $I->seeInShellOutput('Yii Console');
16
    }
17
}
18