DodavatelskaSmlouvaTest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 3
dl 0
loc 22
c 0
b 0
f 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
A tearDown() 0 2 1
1
<?php
2
3
namespace Test\FlexiPeeHP;
4
5
use FlexiPeeHP\DodavatelskaSmlouva;
6
7
/**
8
 * Generated by PHPUnit_SkeletonGenerator on 2016-04-27 at 18:05:33.
9
 */
10
class DodavatelskaSmlouvaTest extends FlexiBeeRWTest
11
{
12
    /**
13
     * @var DodavatelskaSmlouva
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(): void
22
    {
23
        $this->object = new DodavatelskaSmlouva();
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(): void
31
    {
32
        
33
    }
34
}
35