Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function testInvalidInstance(): void |
||
17 | { |
||
18 | $this->expectException(RuleHandlerInterfaceNotImplementedException::class); |
||
19 | $this->expectExceptionMessage('Expected instance of "Yiisoft\Validator\RuleHandlerInterface". Got "int".'); |
||
20 | new SimpleRuleHandlerContainer(['my-rule' => 72]); |
||
21 | } |
||
37 |