|  | @@ 67-84 (lines=18) @@ | 
                                                            
                                    | 64 |  |         $this->assertSame($netteDefinition->getClass(), $symfonyDefinition->getClass()); | 
                                                            
                                    | 65 |  |     } | 
                                                            
                                    | 66 |  |  | 
                                                            
                                    | 67 |  |     public function testTags() | 
                                                            
                                    | 68 |  |     { | 
                                                            
                                    | 69 |  |         $netteDefinition = $this->netteContainerBuilder->addDefinition('someService') | 
                                                            
                                    | 70 |  |             ->setClass(stdClass::class) | 
                                                            
                                    | 71 |  |             ->addTag('someTag'); | 
                                                            
                                    | 72 |  |  | 
                                                            
                                    | 73 |  |         $this->transformFromNetteToSymfonyAndCompile(); | 
                                                            
                                    | 74 |  |  | 
                                                            
                                    | 75 |  |         $symfonyDefinition = $this->symfonyContainerBuilder->getDefinition('someService'); | 
                                                            
                                    | 76 |  |         $this->assertSame(['someTag' => [[true]]], $symfonyDefinition->getTags()); | 
                                                            
                                    | 77 |  |  | 
                                                            
                                    | 78 |  |         $this->containerBuilderTransformer->transformFromSymfonyToNette( | 
                                                            
                                    | 79 |  |             $this->symfonyContainerBuilder, | 
                                                            
                                    | 80 |  |             $this->netteContainerBuilder | 
                                                            
                                    | 81 |  |         ); | 
                                                            
                                    | 82 |  |  | 
                                                            
                                    | 83 |  |         $this->assertSame($netteDefinition, $this->netteContainerBuilder->getDefinition('someService')); | 
                                                            
                                    | 84 |  |     } | 
                                                            
                                    | 85 |  |  | 
                                                            
                                    | 86 |  |     public function testAutowiringStep2() | 
                                                            
                                    | 87 |  |     { | 
                                                                                
                                |  | @@ 86-103 (lines=18) @@ | 
                                                            
                                    | 83 |  |         $this->assertSame($netteDefinition, $this->netteContainerBuilder->getDefinition('someService')); | 
                                                            
                                    | 84 |  |     } | 
                                                            
                                    | 85 |  |  | 
                                                            
                                    | 86 |  |     public function testAutowiringStep2() | 
                                                            
                                    | 87 |  |     { | 
                                                            
                                    | 88 |  |         $netteDefinition = $this->netteContainerBuilder->addDefinition('someService') | 
                                                            
                                    | 89 |  |             ->setClass(stdClass::class) | 
                                                            
                                    | 90 |  |             ->addTag('someTag'); | 
                                                            
                                    | 91 |  |  | 
                                                            
                                    | 92 |  |         $this->transformFromNetteToSymfonyAndCompile(); | 
                                                            
                                    | 93 |  |  | 
                                                            
                                    | 94 |  |         $symfonyDefinition = $this->symfonyContainerBuilder->getDefinition('someService'); | 
                                                            
                                    | 95 |  |         $this->assertSame(['someTag' => [[true]]], $symfonyDefinition->getTags()); | 
                                                            
                                    | 96 |  |  | 
                                                            
                                    | 97 |  |         $this->containerBuilderTransformer->transformFromSymfonyToNette( | 
                                                            
                                    | 98 |  |             $this->symfonyContainerBuilder, | 
                                                            
                                    | 99 |  |             $this->netteContainerBuilder | 
                                                            
                                    | 100 |  |         ); | 
                                                            
                                    | 101 |  |  | 
                                                            
                                    | 102 |  |         $this->assertSame($netteDefinition, $this->netteContainerBuilder->getDefinition('someService')); | 
                                                            
                                    | 103 |  |     } | 
                                                            
                                    | 104 |  |  | 
                                                            
                                    | 105 |  |     public function testPreventDuplicating() | 
                                                            
                                    | 106 |  |     { |