mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 01:18:39 +00:00
14 lines
256 B
Forth
14 lines
256 B
Forth
namespace Consumer
|
|
|
|
open System
|
|
open NUnit.Framework
|
|
|
|
[<TestFixture>]
|
|
module TestStdout =
|
|
|
|
[<Test>]
|
|
let ``Stdout is redirected`` () =
|
|
Console.Out.WriteLine "Hi!"
|
|
Console.WriteLine "Hi! part 2"
|
|
Console.Error.WriteLine "Bye!"
|