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

GrantleyTest::testDatabaseForGrantley()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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