Passed
Branch master (a88228)
by Antonio Carlos
03:29
created

ArtisanTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace PragmaRX\Firewall\Tests;
4
5
use Artisan;
6
7
class ArtisanTest extends TestCase
8
{
9
    public function test_blacklist()
10
    {
11
        Artisan::call('firewall:updategeoip');
12
    }
13
14
    public function test_report()
15
    {
16
        Artisan::call('firewall:list');
17
    }
18
}
19