4

我正在尝试在我们的测试项目中启动并运行 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. ᕙ໒( ˵ ಠ ╭͜ʖ╮ ಠೃ ˵ )७ᕗ
4

1 回答 1

6

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

于 2017-06-05T13:17:23.570 回答