Completed
Push — master ( 17598f...abee1f )
by Kirill
13s queued 11s
created

ConfigureTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConfigure() 0 6 1
1
<?php
2
3
/**
4
 * Spiral Framework.
5
 *
6
 * @license   MIT
7
 * @author    Anton Titov (Wolfy-J)
8
 */
9
10
declare(strict_types=1);
11
12
namespace Spiral\Tests\Framework;
13
14
use Spiral\Tests\Framework\GRPC\GenerateTest;
15
16
class ConfigureTest extends ConsoleTest
17
{
18
    public function testConfigure(): void
19
    {
20
        $output = $this->runCommandDebug('configure');
21
22
        $this->assertStringContainsString('Verifying runtime directory', $output);
23
        $this->assertStringContainsString('locale directory', $output);
24
    }
25
}
26