summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/typedef_inherit_runme.py
blob: 3c552ec65f8c705c9e23a51cded31f257048e552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import typedef_inherit

a = typedef_inherit.Foo()
b = typedef_inherit.Bar()

x = typedef_inherit.do_blah(a)
if x != "Foo::blah":
    raise RuntimeError("Whoa! Bad return {}".format(x))

x = typedef_inherit.do_blah(b)
if x != "Bar::blah":
    raise RuntimeError("Whoa! Bad return {}".format(x))

c = typedef_inherit.Spam()
d = typedef_inherit.Grok()

x = typedef_inherit.do_blah2(c)
if x != "Spam::blah":
    raise RuntimeError("Whoa! Bad return {}".format(x))

x = typedef_inherit.do_blah2(d)
if x != "Grok::blah":
    raise RuntimeError("Whoa! Bad return {}".format(x))