Passed
Push — master ( 7aa55f...12bbeb )
by Davis
01:23
created

TestCreateAuthorService   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
dl 0
loc 5
rs 10
c 1
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: davis
5
 * Date: 7/23/17
6
 * Time: 2:12 PM
7
 */
8
9
namespace DavisPeixoto\BlogCore\Tests;
10
11
use PHPUnit_Framework_TestCase;
12
13
class TestCreateAuthorService extends PHPUnit_Framework_TestCase
14
{
15
    public function testService()
16
    {
17
        return true;
18
    }
19
}
20