Test Failed
Push — master ( 99a915...bca16c )
by Vítězslav
07:03
created

UcetniObdobiTest::testCreateYearsFrom()   B

Complexity

Conditions 5
Paths 9

Size

Total Lines 43
Code Lines 24

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 24
nc 9
nop 0
dl 0
loc 43
rs 8.439
c 0
b 0
f 0
1
<?php
2
/**
3
 * FlexiPeeHP - Objekt účetního období.
4
 *
5
 * @author     Vítězslav Dvořák <[email protected]>
6
 * @copyright  (C) 2015-2017 Spoje.Net
7
 */
8
9
namespace Test\FlexiPeeHP;
10
11
use FlexiPeeHP\UcetniObdobi;
12
13
/**
14
 * Generated by PHPUnit_SkeletonGenerator on 2016-04-27 at 17:32:10.
15
 */
16
class UcetniObdobiTest extends FlexiBeeRWTest
17
{
18
    /**
19
     * @var UcetniObdobi
20
     */
21
    protected $object;
22
23
    /**
24
     * Sets up the fixture, for example, opens a network connection.
25
     * This method is called before a test is executed.
26
     */
27
    protected function setUp()
28
    {
29
        $this->object = new UcetniObdobi;
30
    }
31
32
    /**
33
     * Tears down the fixture, for example, closes a network connection.
34
     * This method is called after a test is executed.
35
     */
36
    protected function tearDown()
37
    {
38
        
39
    }
40
}
41