@@ -193,6 +193,9 @@ function ($object) { return $object->value; }
193193 $ this ->assertObjectListWithCustomValues ($ list );
194194 }
195195
196+ /**
197+ * @group legacy
198+ */
196199 public function testCreateFromFlippedChoicesEmpty ()
197200 {
198201 $ list = $ this ->factory ->createListFromFlippedChoices (array ());
@@ -201,6 +204,9 @@ public function testCreateFromFlippedChoicesEmpty()
201204 $ this ->assertSame (array (), $ list ->getValues ());
202205 }
203206
207+ /**
208+ * @group legacy
209+ */
204210 public function testCreateFromFlippedChoicesFlat ()
205211 {
206212 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -210,6 +216,9 @@ public function testCreateFromFlippedChoicesFlat()
210216 $ this ->assertScalarListWithChoiceValues ($ list );
211217 }
212218
219+ /**
220+ * @group legacy
221+ */
213222 public function testCreateFromFlippedChoicesFlatTraversable ()
214223 {
215224 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -219,6 +228,9 @@ public function testCreateFromFlippedChoicesFlatTraversable()
219228 $ this ->assertScalarListWithChoiceValues ($ list );
220229 }
221230
231+ /**
232+ * @group legacy
233+ */
222234 public function testCreateFromFlippedChoicesFlatValuesAsCallable ()
223235 {
224236 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -229,6 +241,9 @@ public function testCreateFromFlippedChoicesFlatValuesAsCallable()
229241 $ this ->assertScalarListWithCustomValues ($ list );
230242 }
231243
244+ /**
245+ * @group legacy
246+ */
232247 public function testCreateFromFlippedChoicesFlatValuesAsClosure ()
233248 {
234249 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -246,6 +261,9 @@ function ($choice) {
246261 $ this ->assertScalarListWithCustomValues ($ list );
247262 }
248263
264+ /**
265+ * @group legacy
266+ */
249267 public function testCreateFromFlippedChoicesGrouped ()
250268 {
251269 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -258,6 +276,9 @@ public function testCreateFromFlippedChoicesGrouped()
258276 $ this ->assertScalarListWithChoiceValues ($ list );
259277 }
260278
279+ /**
280+ * @group legacy
281+ */
261282 public function testCreateFromFlippedChoicesGroupedTraversable ()
262283 {
263284 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -270,6 +291,9 @@ public function testCreateFromFlippedChoicesGroupedTraversable()
270291 $ this ->assertScalarListWithChoiceValues ($ list );
271292 }
272293
294+ /**
295+ * @group legacy
296+ */
273297 public function testCreateFromFlippedChoicesGroupedValuesAsCallable ()
274298 {
275299 $ list = $ this ->factory ->createListFromFlippedChoices (
@@ -283,6 +307,9 @@ public function testCreateFromFlippedChoicesGroupedValuesAsCallable()
283307 $ this ->assertScalarListWithCustomValues ($ list );
284308 }
285309
310+ /**
311+ * @group legacy
312+ */
286313 public function testCreateFromFlippedChoicesGroupedValuesAsClosure ()
287314 {
288315 $ list = $ this ->factory ->createListFromFlippedChoices (
0 commit comments