mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 09:28:40 +00:00
19 lines
404 B
Forth
19 lines
404 B
Forth
namespace Consumer
|
|
|
|
open NUnit.Framework
|
|
open FsUnitTyped
|
|
|
|
[<TestFixture true>]
|
|
[<TestFixture false>]
|
|
type TestParameterisedFixture (v : bool) =
|
|
[<Test>]
|
|
member _.Thing () = v |> shouldEqual v
|
|
|
|
[<TestFixture(3, true)>]
|
|
[<TestFixture(6, false)>]
|
|
type TestParameterisedFixtureMultiple (i : int, v : bool) =
|
|
[<Test>]
|
|
member _.Thing () =
|
|
v |> shouldEqual v
|
|
i |> shouldEqual i
|