| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function testGetPath(): void |
||
| 19 | { |
||
| 20 | $document = new AccountingDocument(); |
||
| 21 | $document->setFilename('invoice.pdf'); |
||
| 22 | |||
| 23 | self::assertSame('invoice.pdf', $document->getFilename()); |
||
| 24 | $appPath = realpath('.'); |
||
| 25 | $expected = $appPath . '/data/accounting/invoice.pdf'; |
||
| 26 | self::assertSame($expected, $document->getPath()); |
||
| 27 | } |
||
| 56 |