System.out.println("****************** TEST SORTER ******************");
int[] unsorted = new int[]{4, 1, 5, 3};
Sorter.sort(unsorted);
try
{
Sorter.brokenSort(unsorted);
throw new Exception("Did not validate list was not sorted");
}
catch(RuntimeException e)
{
System.out.println(e.getMessage());
}