Add runtime tests for inctest, li_cpointer_cpp, newobject2, special_variables, special_variable_macros, template_extend1, and template_extend2.
10 lines
230 B
OCaml
10 lines
230 B
OCaml
open Swig
|
|
open Li_cpointer_cpp
|
|
|
|
let _ =
|
|
let p = _new_intp '() in
|
|
assert (_intp_value '(p) as int = 0);
|
|
assert (_intp_assign '(p, 3) = C_void);
|
|
assert (_intp_value '(p) as int = 3);
|
|
assert (_delete_intp '(p) = C_void)
|
|
;;
|