| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function testProcess(): void |
||
| 41 | { |
||
| 42 | $this->assertArrayHasKey('resizers', $this->config); |
||
| 43 | $this->assertArrayHasKey('default', $this->config['resizers']); |
||
| 44 | $this->assertSame('sonata.media.resizer.simple', $this->config['resizers']['default']); |
||
| 45 | |||
| 46 | $this->assertArrayHasKey('adapters', $this->config); |
||
| 47 | $this->assertArrayHasKey('default', $this->config['adapters']); |
||
| 48 | $this->assertSame('sonata.media.adapter.image.gd', $this->config['adapters']['default']); |
||
| 49 | } |
||
| 50 | } |
||
| 51 |