@@ -108,18 +108,13 @@ public function testTestGetPropertiesWithEmbedded()
108
108
}
109
109
110
110
/**
111
- * @group legacy
112
- *
113
111
* @dataProvider legacyTypesProvider
114
112
*/
115
113
public function testExtractLegacy (string $ property , ?array $ type = null )
116
114
{
117
115
$ this ->assertEquals ($ type , $ this ->createExtractor ()->getTypes (DoctrineDummy::class, $ property , []));
118
116
}
119
117
120
- /**
121
- * @group legacy
122
- */
123
118
public function testExtractWithEmbeddedLegacy ()
124
119
{
125
120
$ expectedTypes = [new LegacyType (
@@ -137,9 +132,6 @@ public function testExtractWithEmbeddedLegacy()
137
132
$ this ->assertEquals ($ expectedTypes , $ actualTypes );
138
133
}
139
134
140
- /**
141
- * @group legacy
142
- */
143
135
public function testExtractEnumLegacy ()
144
136
{
145
137
$ this ->assertEquals ([new LegacyType (LegacyType::BUILTIN_TYPE_OBJECT , false , EnumString::class)], $ this ->createExtractor ()->getTypes (DoctrineEnum::class, 'enumString ' , []));
@@ -149,9 +141,6 @@ public function testExtractEnumLegacy()
149
141
$ this ->assertNull ($ this ->createExtractor ()->getTypes (DoctrineEnum::class, 'enumCustom ' , []));
150
142
}
151
143
152
- /**
153
- * @group legacy
154
- */
155
144
public static function legacyTypesProvider (): array
156
145
{
157
146
// DBAL 4 has a special fallback strategy for BINGINT (int -> string)
@@ -251,9 +240,6 @@ public function testGetPropertiesCatchException()
251
240
$ this ->assertNull ($ this ->createExtractor ()->getProperties ('Not\Exist ' ));
252
241
}
253
242
254
- /**
255
- * @group legacy
256
- */
257
243
public function testGetTypesCatchExceptionLegacy ()
258
244
{
259
245
$ this ->assertNull ($ this ->createExtractor ()->getTypes ('Not\Exist ' , 'baz ' ));
0 commit comments