You are here

public function LuhnValidatorTest::testValidNumbers in Zircon Profile 8

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

@dataProvider getValidNumbers

File

vendor/symfony/validator/Tests/Constraints/LuhnValidatorTest.php, line 47

Class

LuhnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidNumbers($number) {
  $this->validator
    ->validate($number, new Luhn());
  $this
    ->assertNoViolation();
}