summaryrefslogtreecommitdiff
path: root/sort/selection_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'sort/selection_test.go')
-rw-r--r--sort/selection_test.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/sort/selection_test.go b/sort/selection_test.go
deleted file mode 100644
index f432474..0000000
--- a/sort/selection_test.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package sort
-
-import (
- "testing"
-)
-
-func BenchmarkSelection(b *testing.B) {
- benchmark("Selection", 10, Selection, b)
- benchmark("Selection", 100, Selection, b)
- benchmark("Selection", 1000, Selection, b)
-}
-
-func TestSelection(t *testing.T) {
- for i := 1; i <= 1000; i *= 10 {
- test("Selection", i, Selection, t)
- }
-}