From d317db5aa7f01b4fdb9396532940f40ddf1f8021 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 7 Oct 2004 20:05:50 +0000 Subject: [PATCH] Runtime test for templates and default args git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6364 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- .../java/template_default_arg_runme.java | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 SWIG/Examples/test-suite/java/template_default_arg_runme.java diff --git a/SWIG/Examples/test-suite/java/template_default_arg_runme.java b/SWIG/Examples/test-suite/java/template_default_arg_runme.java new file mode 100644 index 000000000..28326373a --- /dev/null +++ b/SWIG/Examples/test-suite/java/template_default_arg_runme.java @@ -0,0 +1,64 @@ + + +import template_default_arg.*; + +public class template_default_arg_runme { + + static { + try { + System.loadLibrary("template_default_arg"); + } catch (UnsatisfiedLinkError e) { + System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); + System.exit(1); + } + } + + public static void main(String argv[]) { + { + Hello_int helloInt = new Hello_int(); + helloInt.foo(Hello_int.Hi.hi); + } + { + X_int x = new X_int(); + if (x.meth(20.0, 200) != 200) + throw new RuntimeException("X_int test 1 failed"); + if (x.meth(20) != 20) + throw new RuntimeException("X_int test 2 failed"); + if (x.meth() != 0) + throw new RuntimeException("X_int test 3 failed"); + } + + { + Y_unsigned y = new Y_unsigned(); + if (y.meth(20.0, 200) != 200) + throw new RuntimeException("Y_unsigned test 1 failed"); + if (y.meth(20) != 20) + throw new RuntimeException("Y_unsigned test 2 failed"); + if (y.meth() != 0) + throw new RuntimeException("Y_unsigned test 3 failed"); + } + + { + X_longlong x = new X_longlong(); + x = new X_longlong(20.0); + x = new X_longlong(20.0, 200L); + } + { + X_int x = new X_int(); + x = new X_int(20.0); + x = new X_int(20.0, 200); + } + { + X_hello_unsigned x = new X_hello_unsigned(); + x = new X_hello_unsigned(20.0); + x = new X_hello_unsigned(20.0, new Hello_int()); + } + { + Y_hello_unsigned y = new Y_hello_unsigned(); + y.meth(20.0, new Hello_int()); + y.meth(new Hello_int()); + y.meth(); + } + } +} +