mirror of https://github.com/swig/swig.git
16 lines
824 B
Lua
16 lines
824 B
Lua
require("li_std_except")
|
|
|
|
test = li_std_except.Test()
|
|
-- under lua, all the std::exceptions are just turned to strings, so we are only checking that is fails
|
|
assert(not pcall(function() test:throw_bad_exception() end))
|
|
assert(not pcall(function() test:throw_domain_error() end))
|
|
assert(not pcall(function() test:throw_exception() end))
|
|
assert(not pcall(function() test:throw_invalid_argument() end))
|
|
assert(not pcall(function() test:throw_length_error() end))
|
|
assert(not pcall(function() test:throw_logic_error() end))
|
|
assert(not pcall(function() test:throw_out_of_range() end))
|
|
assert(not pcall(function() test:throw_overflow_error() end))
|
|
assert(not pcall(function() test:throw_range_error() end))
|
|
assert(not pcall(function() test:throw_runtime_error() end))
|
|
assert(not pcall(function() test:throw_underflow_error() end))
|