skip not applicable tests

This commit is contained in:
Christian Flothmann 2019-12-16 12:22:11 +01:00
parent 64410edfb3
commit 227c38180f
2 changed files with 16 additions and 0 deletions

View File

@ -108,4 +108,12 @@ class LessThanOrEqualValidatorWithNegativeOrZeroConstraintTest extends LessThanO
{
$this->markTestSkipped('The compared value cannot be an invalid string date because it is hardcoded to 0.');
}
/**
* @dataProvider provideComparisonsToNullValueAtPropertyPath
*/
public function testCompareWithNullValueAtPropertyAt($dirtyValue, $dirtyValueAsString, $isValid)
{
$this->markTestSkipped('PropertyPath option is not used in NegativeOrZero constraint');
}
}

View File

@ -108,4 +108,12 @@ class LessThanValidatorWithNegativeConstraintTest extends LessThanValidatorTest
{
$this->markTestSkipped('The compared value cannot be an invalid string date because it is hardcoded to 0.');
}
/**
* @dataProvider provideComparisonsToNullValueAtPropertyPath
*/
public function testCompareWithNullValueAtPropertyAt($dirtyValue, $dirtyValueAsString, $isValid)
{
$this->markTestSkipped('PropertyPath option is not used in Negative constraint');
}
}