Completed
Push — master ( 68f225...5edd48 )
by Vítězslav
04:44
created

BankaTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 4 1
A testStahnoutVypisyOnline() 0 5 1
A testAutomatickeParovani() 0 5 1
1
<?php
2
3
namespace Test\FlexiPeeHP;
4
5
use FlexiPeeHP\Banka;
6
7
/**
8
 * Generated by PHPUnit_SkeletonGenerator on 2016-06-10 at 12:31:59.
9
 */
10
class BankaTest extends FlexiBeeRWTest
11
{
12
    /**
13
     * @var Banka
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 Banka;
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
    /**
36
     * @covers FlexiPeeHP\Banka::stahnoutVypisyOnline
37
     */
38
    public function testStahnoutVypisyOnline()
39
    {
40
        $this->assertInternalType('boolean',
41
            $this->object->stahnoutVypisyOnline());
42
    }
43
44
    /**
45
     * @covers FlexiPeeHP\Banka::automatickeParovani
46
     */
47
    public function testAutomatickeParovani()
48
    {
49
        $this->assertInternalType('boolean',
50
            $this->object->automatickeParovani());
51
    }
52
}