Completed
Push — master ( 116dd8...98663d )
by Al3x
02:26
created

InvoiceManagerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCreate() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: alex
5
 * Date: 23.04.17
6
 * Time: 22:03
7
 */
8
9
namespace InvoiceNinjaModuleTest\Service;
10
11
use InvoiceNinjaModule\Service\InvoiceManager;
12
use PHPUnit\Framework\TestCase;
13
14
class InvoiceManagerTest extends TestCase
15
{
16
    public function testCreate()
17
    {
18
        self::assertTrue(true);
19
    }
20
}
21