mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 09:28:40 +00:00
20 lines
381 B
Forth
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"
|