()
| 27 | } |
| 28 | |
| 29 | public static void testSort() { |
| 30 | Integer[] array = new Integer[64]; |
| 31 | for (int i = 0; i < array.length; ++i) { |
| 32 | array[i] = Integer.valueOf(i + 1); |
| 33 | } |
| 34 | ; |
| 35 | int random = 12345; |
| 36 | for (int i = 0; i < 32; ++i) { |
| 37 | random = shuffle(array, random); |
| 38 | Arrays.sort(array); |
| 39 | expectSorted(array); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | public static void main(String[] args) { |
| 44 | { int[] array = new int[0]; |
no test coverage detected