From 6c598a53d3366d8ff7250bdc1ce29fa4c36ec246 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 14 Jul 2020 09:44:02 +0100 Subject: better testing --- sort/selection_test.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'sort/selection_test.go') diff --git a/sort/selection_test.go b/sort/selection_test.go index c5d6beb..f432474 100644 --- a/sort/selection_test.go +++ b/sort/selection_test.go @@ -1,7 +1,6 @@ package sort import ( - "algorithms/ds" "testing" ) @@ -11,10 +10,8 @@ func BenchmarkSelection(b *testing.B) { benchmark("Selection", 1000, Selection, b) } -func TestSelection1000(t *testing.T) { - a := ds.RandomIntegers(1000, 1000) - a = Selection(a) - if !Sorted(a) { - t.Errorf("Array not sorted: %v", a) +func TestSelection(t *testing.T) { + for i := 1; i <= 1000; i *= 10 { + test("Selection", i, Selection, t) } } -- cgit v1.2.3