Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
17 | public function testNormalizeThrowsIfNotANumber() |
||
18 | { |
||
19 | $this->expectConstraintException('InvalidTypeException', '/multipleOf'); |
||
20 | $schema = $this->loadSchema('invalid/multiple-of-not-number'); |
||
21 | $this->getConstraint()->normalize($schema, new Context(), $this->mockWalker()); |
||
22 | } |
||
23 | |||
54 |