Completed
Push — patch-meta ( 5bd3e7 )
by Tobias
08:29
created

SpecSpec   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A it_creates_an_x_specification() 0 4 1
1
<?php
2
3
namespace tests\Happyr\DoctrineSpecification;
4
5
use Happyr\DoctrineSpecification\Spec;
6
use PhpSpec\ObjectBehavior;
7
8
/**
9
 * @mixin Spec
10
 */
11
class SpecSpec extends ObjectBehavior
12
{
13
    public function it_creates_an_x_specification()
14
    {
15
        $this->andX()->shouldReturnAnInstanceOf('Happyr\DoctrineSpecification\Logic\LogicX');
16
    }
17
}
18