I am trying to test that a collection does not contain a value using FsUnit.Xunit
.
open FsUnit.Xunit
[<Fact>]
let ``simple test`` () =
let xs = [ 1; 2; 3 ]
xs |> should contain 1
xs |> should not contain 99 // Not real code
I have also tried using not'
.
How should I write this?