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

BasicTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A shouldReturnHomePage() 0 5 1
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