diff -r 484248c9c1d6 -r 9830c8b761ce rt/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java --- a/rt/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java Mon Feb 17 17:49:30 2014 +0100 +++ b/rt/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java Tue Jan 20 13:01:31 2015 +0100 @@ -79,89 +79,6 @@ ); } - @Test public void rintNegativeUp() throws Exception { - final double cnts = -453904.634; - assertExec( - "Should round up to end with 5", - Math.class, "rint__DD", - -453905.0, cnts - ); - } - - @Test public void rintNegativeDown() throws Exception { - final double cnts = -453904.434; - assertExec( - "Should round up to end with 4", - Math.class, "rint__DD", - -453904.0, cnts - ); - } - - @Test public void rintPositiveUp() throws Exception { - final double cnts = 453904.634; - assertExec( - "Should round up to end with 5", - Math.class, "rint__DD", - 453905.0, cnts - ); - } - @Test public void rintPositiveDown() throws Exception { - final double cnts = 453904.434; - assertExec( - "Should round up to end with 4", - Math.class, "rint__DD", - 453904.0, cnts - ); - } - @Test public void rintOneHalf() throws Exception { - final double cnts = 1.5; - assertExec( - "Should round up to end with 2", - Math.class, "rint__DD", - 2.0, cnts - ); - } - @Test public void rintNegativeOneHalf() throws Exception { - final double cnts = -1.5; - assertExec( - "Should round up to end with 2", - Math.class, "rint__DD", - -2.0, cnts - ); - } - @Test public void rintTwoAndHalf() throws Exception { - final double cnts = 2.5; - assertExec( - "Should round up to end with 2", - Math.class, "rint__DD", - 2.0, cnts - ); - } - @Test public void rintNegativeTwoOneHalf() throws Exception { - final double cnts = -2.5; - assertExec( - "Should round up to end with 2", - Math.class, "rint__DD", - -2.0, cnts - ); - } - - @Test public void ieeeReminder1() throws Exception { - assertExec( - "Same result 1", - Math.class, "IEEEremainder__DDD", - Math.IEEEremainder(10.0, 4.5), 10.0, 4.5 - ); - } - - @Test public void ieeeReminder2() throws Exception { - assertExec( - "Same result 1", - Math.class, "IEEEremainder__DDD", - Math.IEEEremainder(Integer.MAX_VALUE, -4.5), Integer.MAX_VALUE, -4.5 - ); - } - @Test public void divAndRound() throws Exception { assertExec( "Should be rounded to one",