Test Failed
Push — master ( 3bbada...6bf191 )
by Vítězslav
07:41
created

PrilohaTest::testAttachFile()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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 Priloha
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();
24
    }
25
26
    public function testAttachFile()
27
    {
28
        $this->object->attachFile('../project_logo.png');
29
    }
30
31
    /**
32
     * Tears down the fixture, for example, closes a network connection.
33
     * This method is called after a test is executed.
34
     */
35
    protected function tearDown()
36
    {
37
        
38
    }
39
}
40