diff --git a/Consumer/Consumer.fsproj b/Consumer/Consumer.fsproj index fbd572a..8ffe2e0 100644 --- a/Consumer/Consumer.fsproj +++ b/Consumer/Consumer.fsproj @@ -11,6 +11,7 @@ + diff --git a/Consumer/TestStdout.fs b/Consumer/TestStdout.fs new file mode 100644 index 0000000..0f6389f --- /dev/null +++ b/Consumer/TestStdout.fs @@ -0,0 +1,13 @@ +namespace Consumer + +open System +open NUnit.Framework + +[] +module TestStdout = + + [] + let ``Stdout is redirected`` () = + Console.Out.WriteLine "Hi!" + Console.WriteLine "Hi! part 2" + Console.Error.WriteLine "Bye!"