PylintTest::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
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
namespace exussum12\CoverageChecker\tests\Loaders;
3
4
use exussum12\CoverageChecker\Loaders\Pylint;
5
6
class PylintTest extends PhanTextTest
7
{
8
    /** @var  Pylint */
9
    protected $phan;
10
    protected function setUp()
11
    {
12
        parent::setUp();
13
        $this->phan = new Pylint(__DIR__ . '/../fixtures/pylint.txt');
14
    }
15
}
16