swig/Examples/test-suite/lua/using_pointers_runme.lua

8 lines
249 B
Lua

require("using_pointers")
local f = using_pointers.FooBar()
local ret, msg = pcall(function() f:exception_spec(1) end)
assert(not ret and msg == 10)
ret, msg =pcall(function() f:exception_spec(2) end)
assert(not ret and msg == "exception message")