Batman.Core.Tests.Bootstrapper.TinyIoCTest.RegisterGenericFunctionNamedTest C# (CSharp) Метод

RegisterGenericFunctionNamedTest() приватный Метод

private RegisterGenericFunctionNamedTest ( ) : void
Результат void
        public void RegisterGenericFunctionNamedTest()
        {
            using (Batman.Core.Bootstrapper.TinyIoC.Bootstrapper Bootstrapper = new Core.Bootstrapper.TinyIoC.Bootstrapper())
            {
                Bootstrapper.Register<TestClass>(() => new TestClass { A = 10, B = 1.23f, C = "Testing" }, "Test1");
                Assert.Equal(new TestClass { A = 10, B = 1.23f, C = "Testing" }, Bootstrapper.Resolve<TestClass>("Test1"));
            }
        }