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

Should_register_generics() private method

private Should_register_generics ( ) : void
return void
        public void Should_register_generics()
        {
            IKernel kernel = new StandardKernel();

            kernel.Bind(typeof(IGenericService<>)).To(typeof(GenericServiceImpl<>));

            Assert.That(kernel.Get<IGenericService<DomainEntity>>(), Is.Not.Null);
        }