CodeExplorer PriorityTaggedServiceTraitImplementation example
new Reference('my_service9'
),
new Reference('my_service7'
),
new Reference('my_service6'
),
new Reference('my_service3'
),
new Reference('my_service10'
),
new Reference('my_service14'
),
new Reference('my_service11'
),
new Reference('my_service12'
),
new Reference('my_service13'
),
];
$priorityTaggedServiceTraitImplementation =
new PriorityTaggedServiceTraitImplementation();
$this->
assertEquals($expected,
$priorityTaggedServiceTraitImplementation->
test('my_custom_tag',
$container));
} public function testWithEmptyArray() { $container =
new ContainerBuilder();
$priorityTaggedServiceTraitImplementation =
new PriorityTaggedServiceTraitImplementation();
$this->
assertEquals([],
$priorityTaggedServiceTraitImplementation->
test('my_custom_tag',
$container));
}