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