public function testStrictWithMultipleChoices() {
$constraint = new Choice(array(
'choices' => array(
1,
2,
3,
),
'multiple' => true,
'strict' => true,
'multipleMessage' => 'myMessage',
));
$this->context
->expects($this
->once())
->method('addViolation')
->with('myMessage', array(
'{{ value }}' => '3',
));
$this->validator
->validate(array(
2,
'3',
), $constraint);
}