Passed
Push — master ( be866d...b177ff )
by Łukasz
02:20
created

UnitTests::testTemp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Mrluke\Privileges\Tests;
4
5
use Mockery;
6
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
7
8
use PHPUnit\Framework\TestCase;
9
10
/**
11
 * UnitTests for package.
12
 *
13
 * @author    Łukasz Sitnicki (mr-luke)
14
 * @link      http://github.com/mr-luke/privileges
15
 * @license   MIT
16
 */
17
class UnitTests extends TestCase
18
{
19
    use MockeryPHPUnitIntegration;
20
21
    public function testTemp()
22
    {
23
        $this->assertTrue(true);
24
    }
25
}
26