@@ -30,6 +30,7 @@ class DataTest extends OpenMageTest
30
30
31
31
private static Subject $ subject ;
32
32
33
+ public const SKIP_INCOMPLETE = 'incomplete ' ;
33
34
public const SKIP_WITH_LOCAL_DATA = 'Constant DATA_MAY_CHANGED is defined. ' ;
34
35
35
36
public static function setUpBeforeClass (): void
@@ -71,7 +72,7 @@ public function testGetCalculator(): void
71
72
*/
72
73
public function testGetProductPrice (): void
73
74
{
74
- static ::markTestSkipped ();
75
+ static ::markTestSkipped (self :: SKIP_INCOMPLETE );
75
76
/** @phpstan-ignore deadCode.unreachable */
76
77
static ::assertSame ('' , self ::$ subject ->getProductPrice ());
77
78
}
@@ -130,7 +131,7 @@ public function testNeedPriceConversion(): void
130
131
*/
131
132
public function testGetPriceFormat (): void
132
133
{
133
- static ::markTestSkipped ();
134
+ static ::markTestSkipped (self :: SKIP_INCOMPLETE );
134
135
/** @phpstan-ignore deadCode.unreachable */
135
136
static ::assertSame ('' , self ::$ subject ->getPriceFormat ());
136
137
}
@@ -163,7 +164,7 @@ public function testGetAllRatesByProductClass(): void
163
164
*/
164
165
public function testGetPrice (): void
165
166
{
166
- static ::markTestSkipped ();
167
+ static ::markTestSkipped (self :: SKIP_INCOMPLETE );
167
168
/** @phpstan-ignore deadCode.unreachable */
168
169
static ::assertFalse (self ::$ subject ->getPrice ());
169
170
}
0 commit comments