-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintbounds_internals_test.go
56 lines (54 loc) · 1013 Bytes
/
intbounds_internals_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
package cmd_toolkit
import "testing"
func TestIntBounds_constrainedValue(t *testing.T) {
type fields struct {
MinValue int
DefaultValue int
MaxValue int
}
tests := map[string]struct {
fields fields
value int
wantI int
}{
"low": {
fields: fields{
MinValue: -2,
DefaultValue: 10,
MaxValue: 45,
},
value: -3,
wantI: -2,
},
"middle": {
fields: fields{
MinValue: -2,
DefaultValue: 10,
MaxValue: 45,
},
value: -1,
wantI: -1,
},
"high": {
fields: fields{
MinValue: -2,
DefaultValue: 10,
MaxValue: 45,
},
value: 46,
wantI: 45,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
b := &IntBounds{
MinValue: tt.fields.MinValue,
DefaultValue: tt.fields.DefaultValue,
MaxValue: tt.fields.MaxValue,
}
if gotI := b.constrainedValue(tt.value); gotI != tt.wantI {
t.Errorf("constrainedValue() = %v, want %v", gotI, tt.wantI)
}
})
}
}