F#中的Expecto测试即使在被迫失败时也会通过

时间:2017-06-05 12:54:11

标签: f# mono expecto

我正在尝试在我们的测试项目中运行expecto并运行。

虽然它编译并运行良好,但我想确保它确实有效。所以我给了它一个失败案例并且它通过了。

我在这里想念傻事吗?

我的测试设置

let tests =
    testList "Test Group" [
        test "Testing fail test" {
           let result = false
           Expecto.Expect.isTrue result 
        }
    ]

let runTests args =
  runTestsWithArgs defaultConfig args tests

测试结果

[08:52:06 INF] EXPECTO? Running tests...
[08:52:06 INF] EXPECTO! 1 tests run in 00:00:00.0569286 – 1 passed, 0 ignored, 0 failed, 0 errored. ᕙ໒( ˵ ಠ ╭͜ʖ╮ ಠೃ ˵ )७ᕗ

1 个答案:

答案 0 :(得分:6)

所有Expecto.Expect函数都在最后使用字符串参数,即失败时要打印的消息。您没有提供该参数,因此Expecto.Expect.isTrue result表达式的类型为string -> unit:它实际上尚未调用isTrue。 (您应该在IDE中看到该表达式下的绿色波浪线,表示该值被忽略)。在您的调用中添加一个字符串,例如Expecto.Expect.isTrue result "should fail",然后您的测试将会失败。