Skip to content

Commit 74fe636

Browse files
Merge branch '4.3' into 4.4
* 4.3: Skip deprecations from doctrine/orm Ignore deprecations about doctrine/persistence coming from doctrine/orm skip not applicable tests
2 parents fb5d2ec + 05e146c commit 74fe636

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Tests/Constraints/LessThanOrEqualValidatorWithNegativeOrZeroConstraintTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,14 @@ public function testThrowsOnInvalidStringDates(AbstractComparison $constraint, $
110110
$this->markTestSkipped('The compared value cannot be an invalid string date because it is hardcoded to 0.');
111111
}
112112

113+
/**
114+
* @dataProvider provideComparisonsToNullValueAtPropertyPath
115+
*/
116+
public function testCompareWithNullValueAtPropertyAt($dirtyValue, $dirtyValueAsString, $isValid)
117+
{
118+
$this->markTestSkipped('PropertyPath option is not used in NegativeOrZero constraint');
119+
}
120+
113121
public function testInvalidComparisonToPropertyPathAddsPathAsParameter()
114122
{
115123
$this->markTestSkipped('PropertyPath option is not used in NegativeOrZero constraint');

Tests/Constraints/LessThanValidatorWithNegativeConstraintTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,14 @@ public function testThrowsOnInvalidStringDates(AbstractComparison $constraint, $
110110
$this->markTestSkipped('The compared value cannot be an invalid string date because it is hardcoded to 0.');
111111
}
112112

113+
/**
114+
* @dataProvider provideComparisonsToNullValueAtPropertyPath
115+
*/
116+
public function testCompareWithNullValueAtPropertyAt($dirtyValue, $dirtyValueAsString, $isValid)
117+
{
118+
$this->markTestSkipped('PropertyPath option is not used in Negative constraint');
119+
}
120+
113121
public function testInvalidComparisonToPropertyPathAddsPathAsParameter()
114122
{
115123
$this->markTestSkipped('PropertyPath option is not used in Negative constraint');

0 commit comments

Comments
 (0)