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

18 lines
272 B
Python

from template_ns import *
p1 = pairii(2, 3)
p2 = pairii(p1)
if p2.first != 2:
raise RuntimeError
if p2.second != 3:
raise RuntimeError
p3 = pairdd(3.5, 2.5)
p4 = pairdd(p3)
if p4.first != 3.5:
raise RuntimeError
if p4.second != 2.5:
raise RuntimeError