Base solution for your next web application
Open Closed

NSubstitute Test #1170


User avatar
0
place222 created

this is my Code

var b = Substitute.For();

            LocalIocManager.IocContainer.Register(Component.For().UsingFactoryMethod(() => b).LifestyleSingleton());

            var a = Resolve();


    public interface IA : IApplicationService    {}

    public interface IB : IApplicationService    { }

<span style="color:#FF0040"> public class B : IB
{
public B()
{

    }
}</span>
public class TestA : IA
    {
        private readonly IB _b;

        public TestA(IB b)
        {
            _b = b;
        }
    }

<span style="color:#FF0000">when i imp Ib interface i got the object is not then Stub obj, any thing wrong?</span>


No answer yet!