Passed
Push — master ( ccb7a3...c8f838 )
by Gabriel
01:35
created

ContainerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 1
c 1
b 0
f 1
dl 0
loc 5
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_container() 0 3 1
1
<?php
2
3
namespace Nip\Utility\Tests;
4
5
use Nip\Container\Container;
6
7
use function PHPUnit\Framework\assertInstanceOf;
0 ignored issues
show
introduced by
The function PHPUnit\Framework\assertInstanceOf was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
8
9
/**
10
 * Class ContainerTest
11
 * @package Nip\Utility\Tests
12
 */
13
class ContainerTest extends AbstractTest
14
{
15
    public function test_container()
16
    {
17
        static::assertInstanceOf(Container::class, \Nip\Utility\Container::container());
18
    }
19
}
20