Test case showing problems on loading library (64 vs 32 bit)

This commit is contained in:
riven-lwjgl 2011-07-12 17:49:58 +00:00
parent 4a6717959c
commit 950b17a8fe
4 changed files with 24 additions and 4 deletions

View file

@ -44,7 +44,7 @@ public class TestMappedObject {
throw new RuntimeException("Asserts must be enabled for this test.");
}
public static void main(String[] args) {
public static void main(String[] args) throws Exception {
MappedObjectTransformer.register(MappedFloat.class);
MappedObjectTransformer.register(MappedVec2.class);
MappedObjectTransformer.register(MappedVec3.class);
@ -70,6 +70,8 @@ public class TestMappedObject {
MappedObjectTests3.testForeach();
MappedObjectTests3.testConstructor();
MappedObjectTests3.testMappedSet();
MappedObjectWithLibrary.testLWJGL();
}
}