TestCase::setUp()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * xMDB-API
4
 *
5
 * Copyright © 2017 pudelek.org.pl
6
 *
7
 * @license MIT License (MIT)
8
 *
9
 * For the full copyright and license information, please view source file
10
 * that is bundled with this package in the file LICENSE
11
 *
12
 * @author Marcin Pudełek <[email protected]>
13
 */
14
15
namespace mrcnpdlk\Xmdb;
16
17
class TestCase extends \PHPUnit\Framework\TestCase
18
{
19
    public function setUp()
20
    {
21
        parent::setUp(); // TODO: Change the autogenerated stub
22
    }
23
    public function tearDown()
24
    {
25
        parent::tearDown(); // TODO: Change the autogenerated stub
26
    }
27
}
28