-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathappend_test.go
68 lines (65 loc) · 1.29 KB
/
append_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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package go2linq
import (
"errors"
"iter"
"testing"
"github.com/solsw/iterhelper"
)
func TestAppend_int(t *testing.T) {
type args struct {
source iter.Seq[int]
element int
}
tests := []struct {
name string
args args
want iter.Seq[int]
wantErr bool
expectedErr error
}{
{name: "01",
wantErr: true,
expectedErr: ErrNilSource,
},
{name: "02",
args: args{
element: 2,
},
wantErr: true,
expectedErr: ErrNilSource,
},
{name: "EmptySource",
args: args{
source: Empty[int](),
element: 2,
},
want: iterhelper.VarSeq(2),
},
{name: "1",
args: args{
source: iterhelper.VarSeq(1, 2),
element: 3,
},
want: iterhelper.VarSeq(1, 2, 3),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := Append(tt.args.source, tt.args.element)
if (err != nil) != tt.wantErr {
t.Errorf("Append() error = %v, wantErr %v", err, tt.wantErr)
return
}
if tt.wantErr {
if !errors.Is(err, tt.expectedErr) {
t.Errorf("Append() error = %v, expectedErr %v", err, tt.expectedErr)
}
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("Append() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}