如何让 CastleWindsor 在调用 Resolve 时创建一个新实例
我有以下代码:
public interface IService { }
public class MyService : IService { }
和一个测试方法
[Test]
public void T1()
{
IWindsorContainer container = new WindsorContainer();
container.Register(Component.For<IService>()
.ImplementedBy<MyService>());
var s1 = container.Resolve<IService>();
var s2 = container.Resolve<IService>();
Assert.AreNotSame(s1, s2);
}
我应该更改什么才能通过测试?
I have the following code:
public interface IService { }
public class MyService : IService { }
and a test method
[Test]
public void T1()
{
IWindsorContainer container = new WindsorContainer();
container.Register(Component.For<IService>()
.ImplementedBy<MyService>());
var s1 = container.Resolve<IService>();
var s2 = container.Resolve<IService>();
Assert.AreNotSame(s1, s2);
}
What should I change for the test to pass?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将生活方式设置为“Transient”:
默认生活方式为“Singleton”,这就是您看到相同实例的原因。
Set the lifestyle to
Transient
:The default lifestyle is
Singleton
and that's why you see the same instance.