-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
expect_int16_gen.go
123 lines (109 loc) · 4.93 KB
/
expect_int16_gen.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// +build !generate_numeric
package hit
import minitest "github.com/Eun/go-hit/internal/minitest"
// ⚠️⚠️⚠️ This file was autogenerated by generators/expect/numeric ⚠️⚠️⚠️ //
// IExpectInt16 provides assertions for the int16 type.
type IExpectInt16 interface {
// Equal expects the int16 to be equal to the specified value.
Equal(value int16) IStep
// NotEqual expects the int16 to be not equal to the specified value.
NotEqual(value ...int16) IStep
// OneOf expects the int16 to be equal to one of the specified values.
OneOf(values ...int16) IStep
// NotOneOf expects the int16 to be not equal to one of the specified values.
NotOneOf(values ...int16) IStep
// GreaterThan expects the int16 to be not greater than the specified value.
GreaterThan(value int16) IStep
// LessThan expects the int16 to be less than the specified value.
LessThan(value int16) IStep
// GreaterOrEqualThan expects the int16 to be greater or equal than the specified value.
GreaterOrEqualThan(value int16) IStep
// LessOrEqualThan expects the int16 to be less or equal than the specified value.
LessOrEqualThan(value int16) IStep
// Between expects the int16 to be between the specified min and max value (inclusive, min >= int16 >= max).
Between(min, max int16) IStep
// NotBetween expects the int16 to be not between the specified min and max value (inclusive, min >= int16 >= max).
NotBetween(min, max int16) IStep
}
type expectInt16ValueCallback func(hit Hit) int16
type expectInt16 struct {
cp callPath
valueCallback expectInt16ValueCallback
}
func newExpectInt16(cp callPath, valueCallback expectInt16ValueCallback) IExpectInt16 {
return &expectInt16{cp: cp, valueCallback: valueCallback}
}
func (v *expectInt16) Equal(value int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("Equal", []interface{}{value}), Exec: func(hit *hitImpl) error {
return minitest.Equal(v.valueCallback(hit), value)
}}
}
func (v *expectInt16) NotEqual(values ...int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("NotEqual", int16SliceToInterfaceSlice(values)), Exec: func(hit *hitImpl) error {
return minitest.NotEqual(v.valueCallback(hit), int16SliceToInterfaceSlice(values)...)
}}
}
func (v *expectInt16) OneOf(values ...int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("OneOf", int16SliceToInterfaceSlice(values)), Exec: func(hit *hitImpl) error {
return minitest.OneOf(v.valueCallback(hit), int16SliceToInterfaceSlice(values)...)
}}
}
func (v *expectInt16) NotOneOf(values ...int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("NotOneOf", int16SliceToInterfaceSlice(values)), Exec: func(hit *hitImpl) error {
return minitest.NotOneOf(v.valueCallback(hit), int16SliceToInterfaceSlice(values)...)
}}
}
func (v *expectInt16) GreaterThan(value int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("GreaterThan", []interface{}{value}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l <= value {
return minitest.Errorf("expected %d to be greater than %d", l, value)
}
return nil
}}
}
func (v *expectInt16) LessThan(value int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("LessThan", []interface{}{value}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l >= value {
return minitest.Errorf("expected %d to be less than %d", l, value)
}
return nil
}}
}
func (v *expectInt16) GreaterOrEqualThan(value int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("GreaterOrEqualThan", []interface{}{value}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l < value {
return minitest.Errorf("expected %d to be greater or equal than %d", l, value)
}
return nil
}}
}
func (v *expectInt16) LessOrEqualThan(value int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("LessOrEqualThan", []interface{}{value}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l > value {
return minitest.Errorf("expected %d to be less or equal than %d", l, value)
}
return nil
}}
}
func (v *expectInt16) Between(min, max int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("Between", []interface{}{min, max}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l < min || l > max {
return minitest.Errorf("expected %d to be between %d and %d", l, min, max)
}
return nil
}}
}
func (v *expectInt16) NotBetween(min, max int16) IStep {
return &hitStep{Trace: ett.Prepare(), When: ExpectStep, CallPath: v.cp.Push("NotBetween", []interface{}{min, max}), Exec: func(hit *hitImpl) error {
l := v.valueCallback(hit)
if l >= min && l <= max {
return minitest.Errorf("expected %d not to be between %d and %d", l, min, max)
}
return nil
}}
}