From a6509b76740162373d3f528ce608e85962e88886 Mon Sep 17 00:00:00 2001 From: Arash Sabet Date: Mon, 15 Feb 2021 13:29:44 -0500 Subject: [PATCH] Deleted DependencyInjectionCollection.cs #49 --- .../IntegrationTests.cs | 1 - src/DependencyInjectionCollection.cs | 12 ------------ 2 files changed, 13 deletions(-) delete mode 100644 src/DependencyInjectionCollection.cs diff --git a/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/IntegrationTests.cs b/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/IntegrationTests.cs index a11ed6c..0bff38c 100644 --- a/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/IntegrationTests.cs +++ b/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/IntegrationTests.cs @@ -8,7 +8,6 @@ namespace Xunit.Microsoft.DependencyInjection.ExampleTests { - [CollectionDefinition("Dependency Injection")] public class IntegrationTests : TestBed { public IntegrationTests(ITestOutputHelper testOutputHelper, TestFixture fixture) diff --git a/src/DependencyInjectionCollection.cs b/src/DependencyInjectionCollection.cs deleted file mode 100644 index 068f89e..0000000 --- a/src/DependencyInjectionCollection.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Xunit.Microsoft.DependencyInjection.Abstracts; - -namespace Xunit.Microsoft.DependencyInjection -{ - [CollectionDefinition("Dependency Injection")] - public class DependencyInjectionCollection : ICollectionFixture - { - public DependencyInjectionCollection() - { - } - } -}