git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@768 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
244 B
Python
10 lines
244 B
Python
# Copyright (C) 2000 Tal Shalif
|
|
|
|
execfile('../test_conf.py')
|
|
obj = cpptest("")
|
|
if not type(obj.getInt()) is types.IntType:
|
|
raise "failed"
|
|
if not type(obj.getString()) is types.StringType:
|
|
raise "failed"
|
|
|
|
# primitive_method.py ends here
|