minor #32250 [Validator] remove invalid test case (xabbuh)

This PR was merged into the 4.3 branch.

Discussion
----------

[Validator] remove invalid test case

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Spotted while working on #32179 for the Validator component. Using property paths for comparison when validating arrays simply does not work.

Commits
-------

9000c1eab4 remove invalid test case
This commit is contained in:
Nicolas Grekas 2019-06-28 14:57:32 +02:00
commit e62e2ddb38
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']);