public function testInitWithViolations() {
$violation = $this
->getViolation('Error');
$this->list = new ConstraintViolationList(array(
$violation,
));
$this
->assertCount(1, $this->list);
$this
->assertSame($violation, $this->list[0]);
}