remove invalid test case

This commit is contained in:
Christian Flothmann 2019-06-28 12:14:37 +02:00
parent 00e13677ba
commit 9000c1eab4
1 changed files with 0 additions and 11 deletions

View File

@ -50,17 +50,6 @@ class BicValidatorTest extends ConstraintValidatorTestCase
$this->assertNoViolation();
}
public function testValidComparisonToPropertyPathOnArray()
{
$constraint = new Bic(['ibanPropertyPath' => '[root][value]']);
$this->setObject(['root' => ['value' => 'FR14 2004 1010 0505 0001 3M02 606']]);
$this->validator->validate('SOGEFRPP', $constraint);
$this->assertNoViolation();
}
public function testInvalidComparisonToPropertyPath()
{
$constraint = new Bic(['ibanPropertyPath' => 'value']);