| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function testCreateWithOptions(): void |
||
| 41 | { |
||
| 42 | $dompdf = $this->dompdfFactory->create([ |
||
| 43 | 'dpi' => 200, |
||
| 44 | 'tempDir' => 'foo', |
||
| 45 | ]); |
||
| 46 | |||
| 47 | $options = $dompdf->getOptions(); |
||
| 48 | |||
| 49 | static::assertSame('foo', $options->getTempDir()); |
||
| 50 | static::assertSame(200, $options->getDpi()); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |