-
-
Notifications
You must be signed in to change notification settings - Fork 98
Open
Description
A testParam is not discoverd, unless it is inside a testList. Is this by design?
module MyTests =
[<Tests>]
let ``this is not discovered``: Test seq=
testParam 42 [
"not discovered", fun value () ->
Expect.isTrue (value = 42) "OK!"
]
[<Tests>]
let ``this is discovered``: Test =
testList "discoverd!" <|
(testParam 42 [
"discoverd", fun value () ->
Expect.isTrue (value = 42) "OK!" ]
|> Seq.toList)This is using Program.fs:
[<EntryPoint>]
let main argv =
runTestsInAssemblyWithCLIArgs [] argvReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels