public function LegacyExecutionContextTest::testAddViolation in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/LegacyExecutionContextTest.php \Symfony\Component\Validator\Tests\LegacyExecutionContextTest::testAddViolation()
File
- vendor/
symfony/ validator/ Tests/ LegacyExecutionContextTest.php, line 92
Class
- LegacyExecutionContextTest
- @group legacy
Namespace
Symfony\Component\Validator\TestsCode
public function testAddViolation() {
$this->translator
->expects($this
->once())
->method('trans')
->with('Error', array(
'foo' => 'bar',
))
->will($this
->returnValue('Translated error'));
$this->context
->addViolation('Error', array(
'foo' => 'bar',
), 'invalid');
$this
->assertEquals(new ConstraintViolationList(array(
new ConstraintViolation('Translated error', 'Error', array(
'foo' => 'bar',
), 'Root', 'foo.bar', 'invalid'),
)), $this->context
->getViolations());
}