function out = timeTestSort()

smallData = rand(1,1000);
mediumData = rand(1,2000);
largeData = rand(1,4000);

startTime = cputime();
selectionSort(smallData);
disp(cputime() - startTime);

startTime = cputime();
selectionSort(mediumData);
disp(cputime() - startTime);

startTime = cputime();
selectionSort(largeData);
disp(cputime() - startTime);

