You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php
+57-1Lines changed: 57 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ public function testGetServiceIds()
126
126
127
127
$sc =newProjectServiceContainer();
128
128
$sc->set('foo',$obj =new \stdClass());
129
-
$this->assertEquals(array('internal','bar','foo_bar','foo.baz','circular','throw_exception','throws_exception_on_service_configuration','service_container','foo'),$sc->getServiceIds(),'->getServiceIds() returns defined service ids by getXXXService() methods, followed by service ids defined by set()');
129
+
$this->assertEquals(array('internal','bar','foo_bar','foo.baz','env_dependent_one','env_dependent_two','circular','throw_exception','throws_exception_on_service_configuration','service_container','foo'),$sc->getServiceIds(),'->getServiceIds() returns defined service ids by getXXXService() methods, followed by service ids defined by set()');
130
130
}
131
131
132
132
publicfunctiontestSet()
@@ -308,6 +308,52 @@ public function testThatCloningIsNotSupported()