From 02bac096d410a74404542ebbaf8fd3f1719d378b Mon Sep 17 00:00:00 2001 From: dadhi Date: Thu, 4 Mar 2021 13:40:23 +0300 Subject: [PATCH] added back the tests for the #378 and #380 --- .../GHIssue378_InconsistentResolutionFailure.cs | 4 ++-- ...ue380_ExportFactory_throws_Container_disposed_exception.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/DryIoc.IssuesTests/GHIssue378_InconsistentResolutionFailure.cs b/test/DryIoc.IssuesTests/GHIssue378_InconsistentResolutionFailure.cs index 3df95e008..221b60fa7 100644 --- a/test/DryIoc.IssuesTests/GHIssue378_InconsistentResolutionFailure.cs +++ b/test/DryIoc.IssuesTests/GHIssue378_InconsistentResolutionFailure.cs @@ -10,8 +10,8 @@ public class GHIssue378_InconsistentResolutionFailure : ITest { public int Run() { - // Nested_scopes_undecorated_resolution_succeeds_but_decorated_resolution_with_the_FactoryMethod_fails(); - // Nested_scopes_undecorated_resolution_succeeds_but_decorated_resolution_with_the_RegisterDelegate_fails(); + Nested_scopes_undecorated_resolution_succeeds_but_decorated_resolution_with_the_FactoryMethod_fails(); + Nested_scopes_undecorated_resolution_succeeds_but_decorated_resolution_with_the_RegisterDelegate_fails(); Nested_scopes_decorated_resolution_should_throw_the_DependencyHasShorterReuseLifespan(); return 3; diff --git a/test/DryIoc.IssuesTests/GHIssue380_ExportFactory_throws_Container_disposed_exception.cs b/test/DryIoc.IssuesTests/GHIssue380_ExportFactory_throws_Container_disposed_exception.cs index 4384e99d9..25e7a906f 100644 --- a/test/DryIoc.IssuesTests/GHIssue380_ExportFactory_throws_Container_disposed_exception.cs +++ b/test/DryIoc.IssuesTests/GHIssue380_ExportFactory_throws_Container_disposed_exception.cs @@ -10,8 +10,8 @@ public class GHIssue380_ExportFactory_throws_Container_disposed_exception : ITes { public int Run() { - // MefExportFactoryDoesntThrow(); - DryIocExportFactoryDoesntThrow(); + MefExportFactoryDoesntThrow(); + // DryIocExportFactoryDoesntThrow(); return 2; }