Completed
Push — master ( 1e251e...38fe49 )
by Asif
02:26
created

TestServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testShortcodeClass() 0 5 1
1
<?php namespace Webwizo\ShortCodes;
2
3
use TestCase;
4
5
class TestServiceProvider extends TestCase
6
{
7
    public function testShortcodeClass()
8
    {
9
        $shortcode = app('shortcode');
10
        $this->assertInstanceOf(Shortcode::class, $shortcode);
11
    }
12
13
}