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

UnitTests   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
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