public function LegacyExecutionContextTest::testAddViolationAtUsesPassedNullValue in Plug 7
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ LegacyExecutionContextTest.php, line 215
Class
- LegacyExecutionContextTest
- @group legacy
Namespace
Symfony\Component\Validator\TestsCode
public function testAddViolationAtUsesPassedNullValue() {
$this->translator
->expects($this
->once())
->method('trans')
->with('Error', array(
'foo' => 'bar',
))
->will($this
->returnValue('Translated error'));
$this->translator
->expects($this
->once())
->method('transChoice')
->with('Choice error', 2, array(
'foo' => 'bar',
))
->will($this
->returnValue('Translated choice error'));
// passed null value should override preconfigured value "invalid"
$this->context
->addViolationAt('bam.baz', 'Error', array(
'foo' => 'bar',
), null);
$this->context
->addViolationAt('bam.baz', 'Choice error', array(
'foo' => 'bar',
), null, 2);
$this
->assertEquals(new ConstraintViolationList(array(
new ConstraintViolation('Translated error', 'Error', array(
'foo' => 'bar',
), 'Root', 'foo.bar.bam.baz', null),
new ConstraintViolation('Translated choice error', 'Choice error', array(
'foo' => 'bar',
), 'Root', 'foo.bar.bam.baz', null, 2),
)), $this->context
->getViolations());
}