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