-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiter_test.go
47 lines (43 loc) · 1.01 KB
/
iter_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
37
38
39
40
41
42
43
44
45
46
47
package highlight
import (
"slices"
"testing"
)
func TestRotateLeft(t *testing.T) {
tests := []struct {
name string
args []string
from int
to int
mid int
expected []string
}{
{
name: "rotate left by 2",
args: []string{"a", "b", "c", "d", "e", "f"},
from: -1,
to: -1,
mid: 2,
expected: []string{"c", "d", "e", "f", "a", "b"},
},
{
name: "rotate sub slice left by 1",
args: []string{"a", "b", "c", "d", "e", "f"},
from: 1,
to: 6,
mid: 1,
expected: []string{"a", "c", "d", "e", "f", "b"},
},
}
for _, test := range tests {
var actual []string
if test.from == -1 && test.to == -1 {
actual = rotateLeft(test.args, test.mid)
} else {
actual = append(test.args[:test.from], append(rotateLeft(test.args[test.from:test.to], test.mid), test.args[test.to:]...)...)
}
if !slices.Equal(actual, test.expected) {
t.Errorf("%s: expected %v, got %v", test.name, test.expected, actual)
}
}
}