Created
March 10, 2011 08:10
-
-
Save kkozmic/863736 to your computer and use it in GitHub Desktop.
Scoped lifestyle in Windsor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
public void Implicitly_graph_scoped_component_instances_are_reused() | |
{ | |
Container.Register( | |
Component.For<A>().LifeStyle.ScopedPer<CBA>(), | |
Component.For<B>().LifeStyle.Transient, | |
Component.For<CBA>().LifeStyle.Transient); | |
var cba = Container.Resolve<CBA>(); | |
Assert.AreSame(cba.A, cba.B.A); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment