summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/typename_runme.py
blob: a4f76fc365c86a15b4aec5290ac402bae29fca09 (plain)
1
2
3
4
5
6
7
8
9
10
11
import typename
import types
f = typename.Foo()
b = typename.Bar()

x = typename.twoFoo(f)
if not isinstance(x, float):
    raise RuntimeError("Wrong return type (FloatType) !")
y = typename.twoBar(b)
if not isinstance(y, int):
    raise RuntimeError("Wrong return type (IntType)!")