Completed
Pull Request — master (#14)
by Scott
02:44
created

CheckstyleTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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