Completed
Push — master ( 2a1972...8c919d )
by Vítězslav
09:47
created

PrilohaTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 4 1
1
<?php
2
3
namespace Test\FlexiPeeHP;
4
5
use FlexiPeeHP\Priloha;
6
7
/**
8
 * Generated by PHPUnit_SkeletonGenerator on 2016-04-27 at 18:05:33.
9
 */
10
class PrilohaTest extends FlexiBeeRWTest
11
{
12
    /**
13
     * @var Kontakt
14
     */
15
    protected $object;
16
17
    /**
18
     * Sets up the fixture, for example, opens a network connection.
19
     * This method is called before a test is executed.
20
     */
21
    protected function setUp()
22
    {
23
        $this->object = new Priloha();
0 ignored issues
show
Documentation Bug introduced by
It seems like new \FlexiPeeHP\Priloha() of type object<FlexiPeeHP\Priloha> is incompatible with the declared type object<Test\FlexiPeeHP\Kontakt> of property $object.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
24
    }
25
26
    /**
27
     * Tears down the fixture, for example, closes a network connection.
28
     * This method is called after a test is executed.
29
     */
30
    protected function tearDown()
31
    {
32
        
33
    }
34
}
35