Test of pow2 method, of class FastMath.
()
| 108 | * Test of pow2 method, of class FastMath. |
| 109 | */ |
| 110 | @Test |
| 111 | public void testPow2_int() |
| 112 | { |
| 113 | System.out.println("pow2"); |
| 114 | for(int i = 0; i < 20; i++) |
| 115 | assertEquals(Math.pow(2,i), FastMath.pow2(i), 0.0);//docs say it must be exact |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Test of pow2 method, of class FastMath. |