Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | protected function setUp(): void |
||
43 | { |
||
44 | $provider = $this->createMock(MediaProviderInterface::class); |
||
45 | |||
46 | $this->mediaPool = $this->createMock(Pool::class); |
||
47 | $this->mediaPool->method('getProvider')->willReturn($provider); |
||
48 | |||
49 | $this->formType = $this->getTestedInstance(); |
||
50 | } |
||
51 | |||
54 |