我真的不知道如何使用OUnit(版本2)使用支架设置和拆卸。 有人想提供一个完整的例子吗?
以下是OUnit2.bracket
功能文档:
val bracket : (test_ctxt -> 'a) ->
('a -> test_ctxt -> unit) -> test_ctxt -> 'a
bracket set_up tear_down test_ctxt set up an object
and register it to be tore down in test_ctxt.
您设置了这样的测试套件:
let test_suite =
"suite" >::: [
"test1" >:: test1_fun
]
然后像这样运行:
let _ =
run_test_tt_main test_suite
我在哪里将括号放在此工作流程中?
OUnit版本1的test_stack.ml
测试括号中的文件ounit-2.0.0/examples
,因此无用。
答案 0 :(得分:5)
好的,看了看这个文件后得到了它:TestLog.ml
此示例将在每次测试后系统地销毁哈希表作为拆卸功能。
open ListLabels (* map with label *)
let test_sentence test_ctxt =
assert_equal "Foo" "Foo"
(** In my case, clear a hashtable after each test *)
let tear_down () test_ctxt =
Hashtbl.clear Globals.flags_tbl
(** List of test cases as (name, function) tuples *)
let test_list = [
"sentence", test_sentence;
]
(** Test suite for all tags *)
let tag_test_suite =
"tags" >::: (map test_list ~f:(fun (name, test_fn) ->
name >:: (fun test_ctxt ->
bracket ignore tear_down test_ctxt;
test_fn test_ctxt
)
))