Completed
Push — translationunittests ( bfa466...5196ce )
by
unknown
29:38 queued 22:11
created

GrantleyTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testDatabaseForGrantley() 0 4 1
1
<?php
2
3
namespace Tests\Feature;
4
5
use Tests\TestCase;
6
7
class GrantleyTest extends TestCase {
8
9
    public function testDatabaseForGrantley() {
10
11
        $this->assertDatabaseMissing('users', [
12
            'email' => '[email protected]'
13
        ]);
14
    }
15
}
16