Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/python/overload_extend_runme.py
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

14 lines
273 B
Python

import overload_extend
f = overload_extend.Foo()
if f.test() != 0:
raise RuntimeError
if f.test(3) != 1:
raise RuntimeError
if f.test("hello") != 2:
raise RuntimeError
if f.test(3, 2) != 5:
raise RuntimeError
if f.test(3.0) != 1003:
raise RuntimeError