Completed
Push — master ( b1aac2...36d657 )
by Avtandil
09:00
created

SimpleBasicAuthTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A it_should_return_auth_response() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Tests\Unit\Middleware;
5
6
use Tests\Unit\TestCase;
7
8
class SimpleBasicAuthTest extends TestCase
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: artisan, be, call, seed
Loading history...
9
{
10
    /** @test */
11
    public function it_should_return_auth_response()
12
    {
13
        $this->markTestSkipped();
14
    }
15
16
}
17