public ActivationBlockContext() { this.kernel = new StandardKernel(); this.block = new ActivationBlock(kernel); }
public ActivationBlockContext() { this.parentMock = new Mock<IResolutionRoot>(); this.requestMock = new Mock<IRequest>(); this.block = new ActivationBlock(this.parentMock.Object); }
public void SetUp() { this.parentMock = new Mock<IResolutionRoot>(); this.requestMock = new Mock<IRequest>(); this.block = new ActivationBlock(this.parentMock.Object); }
public void SetUp() { this.kernel = new StandardKernel(); this.block = new ActivationBlock(kernel); }