You are here

public function RangeValidatorTest::testInvalidValuesMin in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/RangeValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\RangeValidatorTest::testInvalidValuesMin()

@dataProvider getLessThanTen

File

vendor/symfony/validator/Tests/Constraints/RangeValidatorTest.php, line 108

Class

RangeValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidValuesMin($value, $formattedValue) {
  $constraint = new Range(array(
    'min' => 10,
    'minMessage' => 'myMessage',
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', $formattedValue)
    ->setParameter('{{ limit }}', 10)
    ->setCode(Range::BELOW_RANGE_ERROR)
    ->assertRaised();
}