@Test
 public void selectionSortArray() throws Exception {
   int[] actual = SelectionSort.selectionSortArray(arr);
   assertArrayEquals(expected, actual);
 }