@expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException
public function testExpectArrayIfMultipleIsTrue() {
  $constraint = new Choice(array(
    'choices' => array(
      'foo',
      'bar',
    ),
    'multiple' => true,
  ));
  $this->validator
    ->validate('asdf', $constraint);
}