Test Failed
Pull Request — master (#14)
by Scott
02:01
created

PylintTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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