如何使用 FsUnit.Xunit 测试 "should not contain"?

How do I test "should not contain" using FsUnit.Xunit?

我正在尝试使用 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

我也试过使用not'

这个应该怎么写?

你只需要将它括在括号中,因为它需要一个约束(而不是一个函数)。 contain 是一个需要值和 returns 约束的函数。

 xs |> should not' (contain 99)