| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 31 | public function testNormalizeThrowsIfEnumElementsAreNotUnique() |
||
| 32 | { |
||
| 33 | $this->expectConstraintException('NotUniqueException', '/enum'); |
||
| 34 | $schema = $this->loadSchema('invalid/enum-elements-not-unique'); |
||
| 35 | $this->getConstraint()->normalize($schema, new Context(), $this->mockWalker()); |
||
| 36 | } |
||
| 37 | |||
| 48 |