Base _runme.java for li_std_list off li_std_vector_runme.java
This commit is contained in:
parent
131f5e5a0d
commit
65483965ab
1 changed files with 35 additions and 0 deletions
35
Examples/test-suite/java/li_std_list_runme.java
Normal file
35
Examples/test-suite/java/li_std_list_runme.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import li_std_list.*;
|
||||
|
||||
public class li_std_list_runme {
|
||||
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("li_std_list");
|
||||
} 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[]) throws Throwable
|
||||
{
|
||||
IntList v1 = new IntList();
|
||||
DoubleList v2 = new DoubleList();
|
||||
|
||||
v1.add(123);
|
||||
if (v1.get(0) != 123) throw new RuntimeException("v1 test failed");
|
||||
|
||||
StructList v4 = new StructList();
|
||||
StructPtrList v5 = new StructPtrList();
|
||||
StructConstPtrList v6 = new StructConstPtrList();
|
||||
|
||||
v4.add(new Struct(12));
|
||||
v5.add(new Struct(34));
|
||||
v6.add(new Struct(56));
|
||||
|
||||
Struct s = null;
|
||||
if (v4.get(0).getNum() != 12) throw new RuntimeException("v4 test failed");
|
||||
if (v5.get(0).getNum() != 34) throw new RuntimeException("v5 test failed");
|
||||
if (v6.get(0).getNum() != 56) throw new RuntimeException("v6 test failed");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue