Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function testRenderSettings(): void |
||
24 | { |
||
25 | $filter = new EmptyFieldFilter(); |
||
26 | $filter->initialize('field_name', [ |
||
27 | 'field_options' => ['class' => 'FooBar'], |
||
28 | ]); |
||
29 | $options = $filter->getRenderSettings()[1]; |
||
30 | |||
31 | $this->assertSame(BooleanType::class, $options['field_type']); |
||
32 | } |
||
33 | } |
||
34 |