Files
WoofWare.NUnitTestRunner/Consumer/Inconclusive.fs
2024-06-06 21:23:47 +01:00

20 lines
381 B
Forth

namespace Consumer
open NUnit.Framework
[<TestFixture>]
module Inconclusive =
[<Test>]
let ``Inconclusive test`` () =
Assert.Inconclusive "I was inconclusive"
[<Test>]
let ``Ignore test`` () = Assert.Ignore "I am ignored"
[<Test>]
let ``Pass test`` () = Assert.Pass "ohhhh yeaahhhh"
[<Test>]
let ``Warning`` () = Assert.Warn "warning"