/test/kilim/test/TestExprs.java

http://github.com/kilim/kilim · Java · 29 lines · 15 code · 5 blank · 9 comment · 0 complexity · 9ef6387e2e3f5cb703df3561cc79d4f5 MD5 · raw file

  1. /* Copyright (c) 2006, Sriram Srinivasan
  2. *
  3. * You may distribute this software under the terms of the license
  4. * specified in the file "License"
  5. */
  6. package kilim.test;
  7. /**
  8. * An attempt to exercise all the bytecode associated with primitive
  9. * types (loading/storing from registers, array operations, arithmetic operations etc.)
  10. */
  11. public class TestExprs extends Base {
  12. public void testInts() throws Exception {
  13. cache("kilim.test.ex.ExInts");
  14. }
  15. public void testLongs() throws Exception {
  16. cache("kilim.test.ex.ExLongs");
  17. }
  18. public void testFloats() throws Exception {
  19. cache("kilim.test.ex.ExFloats");
  20. }
  21. public void testDoubles() throws Exception {
  22. cache("kilim.test.ex.ExDoubles");
  23. }
  24. }