diff --git a/test/Microsoft.Framework.DependencyInjection.Tests/AutofacContainerTests.cs b/test/Microsoft.Framework.DependencyInjection.Tests/AutofacContainerTests.cs deleted file mode 100644 index 2217e0bf..00000000 --- a/test/Microsoft.Framework.DependencyInjection.Tests/AutofacContainerTests.cs +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using Autofac; -using Autofac.Framework.DependencyInjection; -using Microsoft.Framework.DependencyInjection.Tests.Fakes; - -namespace Microsoft.Framework.DependencyInjection.Tests -{ - public class AutofacContainerTests : ScopingContainerTestBase - { - protected override IServiceProvider CreateContainer() - { - var builder = new ContainerBuilder(); - - builder.Populate(TestServices.DefaultServices()); - - IContainer container = builder.Build(); - return container.Resolve(); - } - } -} - diff --git a/test/Microsoft.Framework.DependencyInjection.Tests/project.json b/test/Microsoft.Framework.DependencyInjection.Tests/project.json index 57a65f6a..f2154b0f 100644 --- a/test/Microsoft.Framework.DependencyInjection.Tests/project.json +++ b/test/Microsoft.Framework.DependencyInjection.Tests/project.json @@ -1,7 +1,6 @@ { "version": "0.1-alpha-*", "dependencies": { - "Autofac.Framework.DependencyInjection": "4.0.0-*", "Microsoft.AspNet.Testing": "1.0.0-*", "Microsoft.Framework.DependencyInjection": "1.0.0-*", "xunit.runner.aspnet": "2.0.0-aspnet-*"