Passed
Push — master ( d11d95...32b9ad )
by Mike
01:59
created

CacheTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExample() 0 4 1
1
<?php namespace GeneaLabs\LaravelModelCaching\Tests\Unit;
2
3
use GeneaLabs\LaravelModelCaching\Tests\TestCase;
4
5
class CacheTest extends TestCase
6
{
7
    public function testExample()
8
    {
9
        //TODO: add initial test
10
        $this->assertTrue(true);
11
    }
12
}
13