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