diff -r 391a5d25c0e1 -r e3f671b50e93 vm/src/test/java/org/apidesign/vm4brwsr/Numbers.java --- a/vm/src/test/java/org/apidesign/vm4brwsr/Numbers.java Sun Nov 18 19:54:40 2012 +0100 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/Numbers.java Wed Jan 30 22:23:21 2013 +0100 @@ -67,4 +67,28 @@ static String floatToString() { return new Float(7.0).toString().toString(); } + + public static long conversionL() { + return Long.MAX_VALUE; + } + + public static long addL(long x, long y) { + return (x + y); + } + + public static long subL(long x, long y) { + return (x - y); + } + + public static long mulL(long x, long y) { + return (x * y); + } + + public static long divL(long x, long y) { + return (x / y); + } + + public static long modL(long x, long y) { + return (x % y); + } }