@@ -108,18 +108,13 @@ public function testTestGetPropertiesWithEmbedded()
108108 }
109109
110110 /**
111- * @group legacy
112- *
113111 * @dataProvider legacyTypesProvider
114112 */
115113 public function testExtractLegacy (string $ property , ?array $ type = null )
116114 {
117115 $ this ->assertEquals ($ type , $ this ->createExtractor ()->getTypes (DoctrineDummy::class, $ property , []));
118116 }
119117
120- /**
121- * @group legacy
122- */
123118 public function testExtractWithEmbeddedLegacy ()
124119 {
125120 $ expectedTypes = [new LegacyType (
@@ -137,9 +132,6 @@ public function testExtractWithEmbeddedLegacy()
137132 $ this ->assertEquals ($ expectedTypes , $ actualTypes );
138133 }
139134
140- /**
141- * @group legacy
142- */
143135 public function testExtractEnumLegacy ()
144136 {
145137 $ this ->assertEquals ([new LegacyType (LegacyType::BUILTIN_TYPE_OBJECT , false , EnumString::class)], $ this ->createExtractor ()->getTypes (DoctrineEnum::class, 'enumString ' , []));
@@ -149,9 +141,6 @@ public function testExtractEnumLegacy()
149141 $ this ->assertNull ($ this ->createExtractor ()->getTypes (DoctrineEnum::class, 'enumCustom ' , []));
150142 }
151143
152- /**
153- * @group legacy
154- */
155144 public static function legacyTypesProvider (): array
156145 {
157146 // DBAL 4 has a special fallback strategy for BINGINT (int -> string)
@@ -251,9 +240,6 @@ public function testGetPropertiesCatchException()
251240 $ this ->assertNull ($ this ->createExtractor ()->getProperties ('Not\Exist ' ));
252241 }
253242
254- /**
255- * @group legacy
256- */
257243 public function testGetTypesCatchExceptionLegacy ()
258244 {
259245 $ this ->assertNull ($ this ->createExtractor ()->getTypes ('Not\Exist ' , 'baz ' ));
0 commit comments