/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/lua/template_classes_runme.lua
13 строк
526 B
Erez Geva
More Lua tests (#3405)
31 май 2026, 17:09
31 май 2026, 17:09
a1b3ca8
Код
Авторство
О чём код?
local v=require("template_classes") -- This test is just testing incorrect number of arguments/parameters checking local point = v.PointInt() local rectangle = v.RectangleInt() rectangle:setPoint(point) rectangle:getPoint() v.RectangleInt.static_noargs() v.RectangleInt.static_onearg(1) assert(not pcall(function() rectangle.setPoint() end)) assert(not pcall(function() rectangle.getPoint(0) end)) assert(not pcall(function() RectangleInt.static_noargs(0) end)) assert(not pcall(function() RectangleInt.static_onearg() end))