/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
- /* Copyright (c) 2006, Sriram Srinivasan
- *
- * You may distribute this software under the terms of the license
- * specified in the file "License"
- */
- package kilim.test;
- /**
- * An attempt to exercise all the bytecode associated with primitive
- * types (loading/storing from registers, array operations, arithmetic operations etc.)
- */
- public class TestExprs extends Base {
- public void testInts() throws Exception {
- cache("kilim.test.ex.ExInts");
- }
- public void testLongs() throws Exception {
- cache("kilim.test.ex.ExLongs");
- }
- public void testFloats() throws Exception {
- cache("kilim.test.ex.ExFloats");
- }
- public void testDoubles() throws Exception {
- cache("kilim.test.ex.ExDoubles");
- }
- }