mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 17:38:40 +00:00
25 lines
565 B
Forth
25 lines
565 B
Forth
namespace Consumer
|
|
|
|
open NUnit.Framework
|
|
|
|
[<TestFixture>]
|
|
module TestExplicitIndividual =
|
|
|
|
[<Explicit>]
|
|
[<Test>]
|
|
let ``This test should not be run`` () = failwith<unit> "should not call"
|
|
|
|
[<Explicit>]
|
|
[<TestFixture>]
|
|
module TestExplicitModule =
|
|
|
|
[<OneTimeSetUp>]
|
|
let setUp () = failwith<unit> "should not call: setup"
|
|
|
|
[<OneTimeTearDown>]
|
|
let tearDown () =
|
|
failwith<unit> "should not call: teardown"
|
|
|
|
[<Test>]
|
|
let ``This test should not be run because its module is explicit`` () = failwith<unit> "should not call: test"
|