From a192bc32f14360b788901b3ba51cefe2c930862d Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Sat, 16 Mar 2024 16:54:35 -0400 Subject: [PATCH] WIP - failing generator test with global ns collision refs #1479 #1480 --- tests/GeneratorTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/GeneratorTest.php b/tests/GeneratorTest.php index 9c1c85f84..974f9570b 100644 --- a/tests/GeneratorTest.php +++ b/tests/GeneratorTest.php @@ -100,5 +100,13 @@ public function getClassNameDetailsTests(): \Generator 'Symfony\\Bundle\\MakerBundle\\Tests\\GeneratorTest', 'Symfony\\Bundle\\MakerBundle\\Tests\\GeneratorTest', ]; + + yield 'class_with_global_ns_collision' => [ + 'Locale', + '\\Entity', + '', + 'App\\Entity\\Locale', + 'Locale', + ]; } }