我正在尝试在我们的测试项目中运行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. ᕙ໒( ˵ ಠ ╭͜ʖ╮ ಠೃ ˵ )७ᕗ
答案 0 :(得分:6)
所有Expecto.Expect
函数都在最后使用字符串参数,即失败时要打印的消息。您没有提供该参数,因此Expecto.Expect.isTrue result
表达式的类型为string -> unit
:它实际上尚未调用isTrue
。 (您应该在IDE中看到该表达式下的绿色波浪线,表示该值被忽略)。在您的调用中添加一个字符串,例如Expecto.Expect.isTrue result "should fail"
,然后您的测试将会失败。