/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/lua/newobject3_runme.lua
11 строк
561 B
Erez Geva
More Lua tests (#3405)
31 май 2026, 17:09
31 май 2026, 17:09
a1b3ca8
Код
Авторство
О чём код?
local v=require("newobject3") local factory = v.factory() assert(swig_type(factory:create(7)) == "Product *") assert(swig_type(factory:create(7, 6)) == "Product *") assert(swig_type(factory:create("test")) == "Product *") assert(swig_type(factory:create("test", 2)) == "Product *") assert(factory:create(0) == nil, "create(0) should be NULL") assert(factory:create(7, -1) == nil, "create(7, -1) should be NULL") assert(factory:create(0, -1) == nil, "create(0, -1) should be NULL") assert(factory:create("bad", -1) == nil, "create(\"bad\", -1) should be NULL")