Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function test_file_without_extension_but_suffix(): void |
||
21 | { |
||
22 | $strategy = new WithSuffixAbsolutePathStrategy('/app/root/', 'suffix'); |
||
23 | $relativePath = '/file-name'; |
||
24 | |||
25 | self::assertSame( |
||
26 | '/app/root/file-name-suffix', |
||
27 | $strategy->generateAbsolutePath($relativePath), |
||
28 | ); |
||
50 |