Completed
Push — master ( b56a59...34b930 )
by Avtandil
04:51
created

ServiceProviderTest::provides()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Tests\Unit;
5
6
use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
7
8
class ServiceProviderTest extends AbstractTestCase
1 ignored issue
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
    use ServiceProviderTrait;
11
12
    /**
13
     * @test
14
     */
15
    public function provides()
16
    {
17
        $this->testProvides();
18
    }
19
}
20