func TestInsert(t *testing.T) { toBeTested := sorting.GetUnsortedTestData() InsertSort(toBeTested) sorting.Check(t, toBeTested) }
func TestBubble(t *testing.T) { toBeTested := sorting.GetUnsortedTestData() BubbleSort(toBeTested) sorting.Check(t, toBeTested) }
func TestSelection(t *testing.T) { toBeTested := sorting.GetUnsortedTestData() SelectionSort(toBeTested) sorting.Check(t, toBeTested) }