Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function testFixing() |
||
28 | { |
||
29 | $codeSnifferRunner = new CodeSnifferRunner(FinalInterfaceSniff::NAME); |
||
30 | |||
31 | $fixedContent = $codeSnifferRunner->getFixedContent(__DIR__ . '/wrong.php'); |
||
32 | |||
33 | $this->assertSame(file_get_contents(__DIR__ . '/wrong-fixed.php'), $fixedContent); |
||
34 | } |
||
35 | |||
37 |