Passed
Branch master (e8fd46)
by Alexey
02:50
created

ContainerSpec   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 9
rs 10
c 1
b 0
f 0
wmc 1
lcom 0
cbo 1
1
<?php
2
3
namespace spec\Venta\Container;
4
5
use Interop\Container\ContainerInterface;
6
use PhpSpec\ObjectBehavior;
7
use Venta\Container\Container;
8
use Venta\Contracts\Container\Container as ContainerContract;
9
10
class ContainerSpec extends ObjectBehavior
11
{
12
    function it_is_initializable()
13
    {
14
        $this->shouldHaveType(Container::class);
15
        $this->shouldImplement(ContainerContract::class);
16
        $this->shouldImplement(ContainerInterface::class);
17
    }
18
}
19