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

CacheTest::testExample()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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