for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace exussum12\CoverageChecker\tests\Loaders;
use exussum12\CoverageChecker\Loaders\Checkstyle;
class CheckstyleTest extends PhanTextTest
{
/** @var Checkstyle */
protected $phan;
protected $prefix = '';
protected function setUp()
parent::setUp();
$this->phan = new Checkstyle(__DIR__ . '/../fixtures/checkstyle.xml');
}