diff options
Diffstat (limited to 'sort/insertion_test.go')
| -rw-r--r-- | sort/insertion_test.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sort/insertion_test.go b/sort/insertion_test.go deleted file mode 100644 index 7be863d..0000000 --- a/sort/insertion_test.go +++ /dev/null @@ -1,17 +0,0 @@ -package sort - -import ( - "testing" -) - -func BenchmarkInsertion(b *testing.B) { - benchmark("Insertion", 10, Insertion, b) - benchmark("Insertion", 100, Insertion, b) - benchmark("Insertion", 1000, Insertion, b) -} - -func TestInsertion(t *testing.T) { - for i := 1; i <= 1000; i *= 10 { - test("Insertion", i, Insertion, t) - } -} |
