Completed
Push — feature/policy_unit_tests ( 0404ac...6499e2 )
by
unknown
07:31
created

BasicTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExample() 0 3 1
1
<?php
2
3
namespace Tests\Feature;
4
5
use Tests\TestCase;
6
use Illuminate\Foundation\Testing\WithFaker;
7
use Illuminate\Foundation\Testing\RefreshDatabase;
8
9
class BasicTest extends TestCase
10
{
11
    /**
12
     * A basic test example.
13
     *
14
     * @return void
15
     */
16
    public function testExample()
17
    {
18
        $this->assertTrue(true);
19
    }
20
}
21