我正在尝试使用基于 XUnit 构建的 FsUnit 来断言异常。我从FsUnit 网站上进行了这个测试:
[<Fact>]
let ``boom`` () =
(fun () -> failwith "BOOM!" |> ignore) |> should throw typeof<System.Exception>
我正在使用 Resharper 2016 运行测试,但出现以下错误:
FsUnit.Xunit+MatchException
Exception of type 'FsUnit.Xunit+MatchException' was thrown.
Expected: System.Exception
Actual: was SqlJuxtFunctionalTests.Scenarios.CompareTableScenarios+boom@22
at SqlJuxtFunctionalTests.Scenarios.CompareTableScenarios.boom() in C:\projects\SqlJuxt\src\SqlJuxtFunctional.Tests\CompareTableScenarios.fs:line 22
我正在使用所涉及的库的以下版本:
- FSharp.Core:4.0.0.1
- .Net:4.6.2
- FsUnit.Xunit:1.4.1.0
- XUnit.core:2.1.0
我认为这可能是 XUnit 的问题,所以我尝试切换到使用基于 NUnit 的 FsUnit,并进行以下测试:
[<Test>]
let ``boom nunit`` () =
(fun () -> failwith "BOOM!" |> ignore) |> should throw typeof<System.Exception>
NUnit 版本抛出一个MissingMethodException
:
System.MissingMethodException : Method not found: 'Void FsUnit.TopLevelOperators.should(Microsoft.FSharp.Core.FSharpFunc`2<!!0,!!1>, !!0, System.Object)'.
at File1.boom()
任何帮助将不胜感激,因为我对此束手无策。