我对无限延迟结构进行了一些测试,如果测试的函数没有正确实现,可能会无限期地运行,但我在OUnit文档中找不到如何在测试中设置超时。
答案 0 :(得分:3)
如果您正在使用OUnit2,则以下内容应该有效:
let tests =
"suite" >::: [OUnitTest.TestCase (
OUnitTest.Short,
(fun _ -> assert_equal 2 (1+1))
);
OUnitTest.TestCase (
OUnitTest.Long,
(fun _ -> assert_equal 4 (2+2))
)]
类型test_length
定义为:
type test_length =
| Immediate
| Short
| Long
| Huge
| Custom_length of float
答案 1 :(得分:1)
我不认为oUnit提供此功能。我记得有一段时间不得不这样做,这是我提出的快速黑客攻击:
let race seconds ~f =
let ch = Event.new_channel () in
let timeout = Thread.create (fun () ->
Thread.delay seconds;
`Time_out |> Event.send ch |> Event.sync
) () in
let tf = Thread.create (fun () ->
`Result (f ()) |> Event.send ch |> Event.sync) () in
let res = ch |> Event.receive |> Event.sync in
try
Thread.kill timeout;
Thread.kill tf;
res
with _ -> res
let () =
let big_sum () =
let arr = Array.init 1_000_000 (fun x -> x) in
Array.fold_left (+) 0 arr in
match race 0.0001 ~f:big_sum with
| `Time_out -> print_endline "time to upgrade";
| `Result x -> Printf.printf "sum is: %d\n" x
这对我的用例运行得很好但是我绝对不会建议使用这个,只是因为race
无法正常工作,如果~f
没有分配或调用{{ 1}}手动。