-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrange_test.go
More file actions
59 lines (56 loc) · 820 Bytes
/
range_test.go
File metadata and controls
59 lines (56 loc) · 820 Bytes
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
package balancer
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestRange_Fits(t *testing.T) {
type fields struct {
Min uint64
Max uint64
Len uint64
}
type args struct {
index uint64
}
tests := []struct {
name string
fields fields
args args
want bool
}{
{
name: "true",
fields: fields{
Min: 10,
Max: 15,
Len: 15 - 10,
},
args: args{
index: 10,
},
want: true,
},
{
name: "false",
fields: fields{
Min: 10,
Max: 15,
Len: 15 - 10,
},
args: args{
index: 15,
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r := &Range{
Min: tt.fields.Min,
Max: tt.fields.Max,
Len: tt.fields.Len,
}
assert.Equal(t, tt.want, r.Fits(tt.args.index))
})
}
}