test: add examples for sort function

This commit is contained in:
dudaodong
2022-12-28 20:18:05 +08:00
parent 652b09135c
commit 68e170080c
3 changed files with 110 additions and 8 deletions

View File

@@ -66,6 +66,7 @@ func TestBubbleSortForStructSlice(t *testing.T) {
func TestBubbleSortForIntSlice(t *testing.T) {
asssert := internal.NewAssert(t, "TestBubbleSortForIntSlice")
numbers := []int{2, 1, 5, 3, 6, 4}
comparator := &intComparator{}
BubbleSort(numbers, comparator)