new tests

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4343 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-02-18 21:25:31 +00:00
commit df9d00e60d
5 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,10 @@
import template_extend1
a = template_extend1.lBaz()
b = template_extend1.dBaz()
if a.foo() != "lBaz::foo":
raise RuntimeError
if b.foo() != "dBaz::foo":
raise RuntimeError

View file

@ -0,0 +1,10 @@
import template_extend2
a = template_extend2.lBaz()
b = template_extend2.dBaz()
if a.foo() != "lBaz::foo":
raise RuntimeError
if b.foo() != "dBaz::foo":
raise RuntimeError