PageRenderTime 36ms CodeModel.GetById 1ms RepoModel.GetById 2ms app.codeStats 0ms

/trunk/Examples/test-suite/java/apply_signed_char_runme.java

#
Java | 36 lines | 27 code | 9 blank | 0 comment | 20 complexity | 19c9128b5f1fd6d3414d0652ea062521 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. import apply_signed_char.*;
  2. public class apply_signed_char_runme {
  3. static {
  4. try {
  5. System.loadLibrary("apply_signed_char");
  6. } catch (UnsatisfiedLinkError e) {
  7. 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);
  8. System.exit(1);
  9. }
  10. }
  11. public static void main(String argv[]) {
  12. byte smallnum = -127;
  13. if (apply_signed_char.CharValFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  14. if (apply_signed_char.CCharValFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  15. if (apply_signed_char.CCharRefFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  16. apply_signed_char.setGlobalchar(smallnum);
  17. if (apply_signed_char.getGlobalchar() != smallnum) throw new RuntimeException("failed");
  18. if (apply_signed_char.getGlobalconstchar() != -110) throw new RuntimeException("failed");
  19. DirectorTest d = new DirectorTest();
  20. if (d.CharValFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  21. if (d.CCharValFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  22. if (d.CCharRefFunction(smallnum) != smallnum) throw new RuntimeException("failed");
  23. d.setMemberchar(smallnum);
  24. if (d.getMemberchar() != smallnum) throw new RuntimeException("failed");
  25. if (d.getMemberconstchar() != -112) throw new RuntimeException("failed");
  26. }
  27. }