Passed
Push — master ( 9aa048...898b5e )
by Mattia
04:05
created

BasicTest::shouldReturnHomePage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MinepicTests;
6
7
class BasicTest extends TestCase
8
{
9
    /** @test */
10
    public function shouldReturnHomePage(): void
11
    {
12
        $this->get('/');
13
14
        $this->assertEquals(200, $this->response->getStatusCode());
15
    }
16
}
17