| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | 12 | public function assertEqualStringsIgnoringLineEndings( |
|
| 10 | string $expected, |
||
| 11 | string $actual, |
||
| 12 | string $message = '' |
||
| 13 | ): void { |
||
| 14 | 12 | $expected = self::normalizeLineEndings($expected); |
|
|
|
|||
| 15 | 12 | $actual = self::normalizeLineEndings($actual); |
|
| 16 | |||
| 17 | 12 | $this->assertEquals($expected, $actual, $message); |
|
| 18 | 9 | } |
|
| 39 |