swig/Examples/test-suite/python/director_exception_runme.py
Marcelo Matus 7d85c1f1b0 more tests for exception
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5945 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-05-29 23:24:53 +00:00

51 lines
593 B
Python

from director_exception import *
from exceptions import *
class MyFoo(Foo):
def ping(self):
raise NotImplementedError, "MyFoo::ping() EXCEPTION"
class MyFoo2(Foo):
def ping(self):
pass # error: should return a string
ok = 0
a = MyFoo()
b = launder(a)
try:
b.pong()
except NotImplementedError, e:
ok = 1
except:
pass
if not ok:
raise RuntimeError
ok = 0
a = MyFoo2()
b = launder(a)
try:
b.pong()
except TypeError, e:
ok = 1
except:
pass
if not ok:
raise RuntimeError
try:
raise Exception2()
except Exception2:
pass
try:
raise Exception1()
except Exception1:
pass