| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function testLoadDefault(): void |
||
| 20 | { |
||
| 21 | $this->load(); |
||
| 22 | |||
| 23 | $this->assertContainerBuilderHasServiceDefinitionWithArgument('core23_antispam.form.extension.type.time', 2, [ |
||
| 24 | 'min' => 5, |
||
| 25 | 'max' => 3600, |
||
| 26 | 'global' => false, |
||
| 27 | ]); |
||
| 28 | $this->assertContainerBuilderHasServiceDefinitionWithArgument('core23_antispam.form.extension.type.honeypot', 1, [ |
||
| 29 | 'field' => 'email_address', |
||
| 30 | 'class' => 'hidden', |
||
| 31 | 'global' => false, |
||
| 32 | 'provider' => 'core23_antispam.provider.session', |
||
| 33 | ]); |
||
| 34 | } |
||
| 35 | |||
| 79 |