summaryrefslogtreecommitdiff
path: root/sort/selection_test.go
blob: 3881850ad702092123d66f0ded1f9bfa14b725b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package sort

import (
	"algorithms/ds"
	"testing"
)

func BenchmarkSelection1000(b *testing.B) {
	a := ds.RandomIntegers(1000, 1000)
	b.ResetTimer()
	Selection(a)
}