-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiterative_test.go
36 lines (28 loc) · 997 Bytes
/
iterative_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package mergelists_test
import (
"reflect"
"testing"
mergelists "github.com/ju-popov/structy.net/017-merge-lists"
)
func TestIterative(t *testing.T) {
t.Parallel()
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
actual := mergelists.Iterative(testCase.head1.Copy(), testCase.head2.Copy())
if !reflect.DeepEqual(actual, testCase.expected) {
t.Errorf("Expected result for test name: '%v' is: '%v', but the actual result is: '%v'", testCase.name, testCase.expected, actual)
}
})
}
}
func benchmarkIterative(b *testing.B, testCase testCase) {
b.Helper()
for n := 0; n < b.N; n++ {
mergelists.Iterative(testCase.head1.Copy(), testCase.head2.Copy())
}
}
func BenchmarkIterative000(b *testing.B) { benchmarkIterative(b, testCases[0]) }
func BenchmarkIterative001(b *testing.B) { benchmarkIterative(b, testCases[1]) }
func BenchmarkIterative002(b *testing.B) { benchmarkIterative(b, testCases[2]) }