namespace Symfony\Component\Routing\Tests\Loader;
use Symfony\Component\Routing\Tests\Fixtures\TraceableAnnotationClassLoader;
class AnnotationClassLoaderWithAttributesTest extends AnnotationClassLoaderTestCase
{ protected function setUp(string
$env = null
): void
{ $this->loader =
new TraceableAnnotationClassLoader($env);
} public function testDefaultRouteName() { $routeCollection =
$this->loader->
load($this->
getNamespace().'\EncodingClass'
);
$defaultName =
array_keys($routeCollection->
all())[0
];
$this->
assertSame('symfony_component_routing_tests_fixtures_attributefixtures_encodingclass_routeàction',
$defaultName);
} protected function getNamespace(): string
{