()
| 31 | } |
| 32 | |
| 33 | public static void test16K() { |
| 34 | long[] array = new long[8 * 1024 * 1024]; |
| 35 | testRandomRead(array, 16384); |
| 36 | } |
| 37 | |
| 38 | public static void test8M() { |
| 39 | long[] array = new long[8 * 1024 * 1024]; |
nothing calls this directly
no test coverage detected