1

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

我该怎么写这个?

4

1 回答 1

2

您只需将其括在括号中,因为它需要一个约束(而不是函数)。contain是一个期望一个值并返回一个约束的函数。

 xs |> should not' (contain 99) 
于 2020-07-28T16:44:24.640 回答