예제 #1
0
        public void resolves_registered_type_with_generics()
        {
            _container.RegisterType <ImplementationWithoutDependencies>();

            var resolved = _container.Resolve <ImplementationWithoutDependencies>();

            Assert.NotNull(resolved);
        }