2

我正在尝试使用基于 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()

任何帮助将不胜感激,因为我对此束手无策。

4

1 回答 1

3

我已经想通了。为了让测试正常工作,我需要使用基于 NUnit 的 FsUnit 并将 FSharp 降级为使用 FSharp 3.1.2.5。如果您使用基于 NUnit 和 FSharp 4.0.0.1 的 FsUnit,那么您将得到可怕的MissingMethodException.

我无法弄清楚为什么代码在 FsUnit.Xunit 上不起作用。

于 2017-01-18T09:29:16.120 回答