Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | public function __construct( |
||
26 | \PHPUnit_Framework_TestCase $testCase, |
||
27 | ReadmeTester $tester = null, |
||
28 | FormatFactory $formatFactory = null |
||
29 | ) { |
||
30 | $this->testCase = $testCase; |
||
31 | $this->tester = $tester ?: new ReadmeTester; |
||
32 | $this->formatFactory = $formatFactory ?: new FormatFactory; |
||
33 | } |
||
34 | |||
64 |