diff --git a/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj b/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj index 27af73fe0..a81982895 100644 --- a/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj +++ b/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj @@ -22,7 +22,6 @@ - diff --git a/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs b/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs deleted file mode 100644 index 028fe9dd6..000000000 --- a/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Xunit; -using Platform.Scopes; -using Platform.Memory; -using Platform.Data.Doublets.Decorators; -using Platform.Reflection; -using Platform.Data.Doublets.Memory.United.Generic; -using TLinkAddress = System.UInt64; - -namespace Platform.Data.Doublets.Tests -{ - public static class ScopeTests - { - [Fact] - public static void SingleDependencyTest() - { - using (var scope = new Scope()) - { - scope.IncludeAssemblyOf(); - var instance = scope.Use(); - Assert.IsType(instance); - } - } - - [Fact] - public static void CascadeDependencyTest() - { - using (var scope = new Scope()) - { - scope.Include(); - scope.Include>(); - var instance = scope.Use>(); - Assert.IsType>(instance); - } - } - - [Fact(Skip = "Would be fixed later.")] - public static void FullAutoResolutionTest() - { - using (var scope = new Scope(autoInclude: true, autoExplore: true)) - { - var instance = scope.Use>(); - Assert.IsType(instance); - } - } - - [Fact] - public static void TypeParametersTest() - { - using (var scope = new Scope>>()) - { - var links = scope.Use>(); - Assert.IsType>(links); - } - } - } -}