File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44namespace FastCloner . Tests ;
55
6- [ NotInParallel ( "FastClonerGlobalState" ) ]
6+ [ NotInParallel ]
77public class ConcurrentTests ( int maxRecursionDepth ) : BaseTestFixture ( maxRecursionDepth )
88{
99 private class TestClass
Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ public async Task Class_With_Subclass_Should_Be_Deep_CLoned()
521521 }
522522
523523 [ Test ]
524- [ NotInParallel ( "FastClonerGlobalState" ) ]
524+ [ NotInParallel ]
525525 public async Task DeepCloneTo_RuntimeMutations_ReflectAndRestoreOnConfiguredRail ( )
526526 {
527527 C1 shared = new C1 { A = 12 , B = "shared" } ;
Original file line number Diff line number Diff line change @@ -1861,7 +1861,7 @@ public async Task Issue27_Clone_Entity_With_EventHandlers_Does_Not_Deep_Clone_De
18611861 }
18621862
18631863 [ Test ]
1864- [ NotInParallel ( "FastClonerGlobalState" ) ]
1864+ [ NotInParallel ]
18651865 public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_Nulls_Delegates ( )
18661866 {
18671867 // Arrange - user opts to ignore event handler types (OP's preferred workaround)
@@ -1896,7 +1896,7 @@ public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_Nulls_Delegate
18961896 }
18971897
18981898 [ Test ]
1899- [ NotInParallel ( "FastClonerGlobalState" ) ]
1899+ [ NotInParallel ]
19001900 public async Task Issue27_Clone_Entity_With_Ignored_EventHandlers_After_PreWarm_Nulls_Delegates ( )
19011901 {
19021902 MvvmEntity original = new MvvmEntity { Name = "Test" , Value = 42 } ;
@@ -3135,7 +3135,7 @@ public async Task FontCloningTest()
31353135
31363136
31373137 [ Test ]
3138- [ NotInParallel ( "FastClonerGlobalState" ) ]
3138+ [ NotInParallel ]
31393139 public async Task Lazy_Clone ( )
31403140 {
31413141 LazyClass . Counter = 0 ;
Original file line number Diff line number Diff line change 33using System . Threading . Tasks ;
44
55namespace FastCloner . Tests ;
6- [ NotInParallel ( "FastClonerGlobalState" ) ]
6+ [ NotInParallel ]
77public class TypeBehaviorTests ( int maxRecursionDepth ) : BaseTestFixture ( maxRecursionDepth )
88{
99 public class SimpleClass
You can’t perform that action at this time.
0 commit comments