Arc.Learning.Tests.NinjectTests.Should_not_throw_exception_when_loading_multiple_inline_modules C# (CSharp) Method

Should_not_throw_exception_when_loading_multiple_inline_modules() private method

        public void Should_not_throw_exception_when_loading_multiple_inline_modules()
        {
            IKernel kernel = new StandardKernel();

            kernel.Bind<IService>().To<ServiceImpl>();
            kernel.Bind<IService2>().To<Service2Impl>();
        }