oboy/test/test_cpu.ml

20 lines
262 B
OCaml
Raw Normal View History

2015-08-10 01:35:47 +02:00
open OUnit2
let test_signed test_ctx =
let n = 0xFA in
let s = Cpu.signed_byte n in
assert_equal s (-6)
(* Name the test cases and group them together *)
let suite =
"suite">:::
[
"test signed">:: test_signed
]
let () =
run_test_tt_main suite