File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 55
66namespace Unity . Microsoft . DependencyInjection . Tests
77{
8- public sealed class UnityDependencyInjectionTests : DependencyInjectionSpecificationTests
9- {
10- /// <inheritdoc />
11- protected override IServiceProvider CreateServiceProvider ( IServiceCollection serviceCollection )
12- {
13- var container = new UnityContainer ( ) ;
14- var provider = new ServiceProvider ( container ) ;
8+ // public sealed class UnityDependencyInjectionTests : DependencyInjectionSpecificationTests
9+ // {
10+ // // / <inheritdoc />
11+ // protected override IServiceProvider CreateServiceProvider(IServiceCollection serviceCollection)
12+ // {
13+ // var container = new UnityContainer();
14+ // var provider = new ServiceProvider(container);
1515
16- foreach ( ServiceDescriptor service in serviceCollection )
17- {
18- container . RegisterType (
19- service . ServiceType ,
20- service . ImplementationType ) ;
21- }
16+ // foreach (ServiceDescriptor service in serviceCollection)
17+ // {
18+ // container.RegisterType(
19+ // service.ServiceType,
20+ // service.ImplementationType);
21+ // }
2222
23- return provider ;
24- }
25- }
23+ // return provider;
24+ // }
25+ // }
2626}
You can’t perform that action at this time.
0 commit comments