diff --git a/Consumer/TestCaseData.fs b/Consumer/TestCaseData.fs index c267be7..9dfaa8d 100644 --- a/Consumer/TestCaseData.fs +++ b/Consumer/TestCaseData.fs @@ -21,3 +21,8 @@ module TestCaseData = [] let ``Consume test data`` (i : int, s : string, arr : float[]) = lock testCasesSeen (fun () -> testCasesSeen.Add (i, s, arr)) + + let optional = [ Some "hi" ; None ] |> List.map TestCaseData + + [] + let ``Consume options`` (s : string option) : unit = s |> shouldEqual s