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 |
||
33 | 3 | public static function assertStringContainsStringIgnoringLineEndings( |
|
34 | string $needle, |
||
35 | string $haystack, |
||
36 | string $message = '' |
||
37 | ): void { |
||
38 | 3 | $needle = self::normalizeLineEndings($needle); |
|
39 | 3 | $haystack = self::normalizeLineEndings($haystack); |
|
40 | |||
41 | 3 | PhpUnitAssert::assertStringContainsString($needle, $haystack, $message); |
|
42 | 2 | } |
|
52 |