public void TestNoneSingletons() { var options = new Options { UseSingletons = false }; options.Assemblies.Add(typeof(StencilTest).Assembly); var stencil = new Stencil(); stencil.Initilize(options); var one = stencil.Resolve<IBar>(); var two = stencil.Resolve<IBar>(); Assert.AreNotEqual(one, two); }