PylintTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
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