swig/Examples/test-suite/octave/imports_runme.m
Xavier Delacour 393391965c Initial commit of Octave module.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2008-03-01 23:35:44 +00:00

19 lines
279 B
Mathematica

# This is the import runtime testcase.
imports_b
imports_a
x = imports_b.B();
x.hello();
a = imports_a.A();
c = imports_b.C();
a1 = c.get_a(c);
a2 = c.get_a_type(c);
a1.hello();
a2.hello();
assert(swig_this(a1)==swig_this(a2));
assert(strcmp(swig_type(a1),swig_type(a2)));