namespace Consumer open System open System.Threading open NUnit.Framework open FsUnitTyped [] [] module TestParallelDefault = let defaults = List.init 60 id [] let ``Default thing, no scope`` (i : int) = Console.WriteLine i Thread.Sleep (TimeSpan.FromMilliseconds (float i)) i |> shouldEqual i [] [] module TestParallelAllScope = let defaults = List.init 60 id [] let ``Thing, all scope`` (i : int) = Console.WriteLine i Thread.Sleep (TimeSpan.FromMilliseconds (float i)) i |> shouldEqual i [] [] module TestParallelSelfScope = let defaults = List.init 60 id [] let ``Thing, self scope`` (i : int) = Console.WriteLine i Thread.Sleep (TimeSpan.FromMilliseconds (float i)) i |> shouldEqual i [] [] module TestParallelChildrenScope = let defaults = List.init 60 id [] let ``Thing, children scope`` (i : int) = Console.WriteLine i Thread.Sleep (TimeSpan.FromMilliseconds (float i)) i |> shouldEqual i [] [] module TestParallelFixturesScope = let defaults = List.init 60 id [] let ``Thing, fixtures scope`` (i : int) = Console.WriteLine i Thread.Sleep (TimeSpan.FromMilliseconds (float i)) i |> shouldEqual i