-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
clear_expect_header_value_gen.go
80 lines (75 loc) · 2.61 KB
/
clear_expect_header_value_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
// +build !generate
package hit
import errortrace "github.com/Eun/go-hit/errortrace"
// ⚠️⚠️⚠️ This file was autogenerated by generators/clear/clear ⚠️⚠️⚠️ //
// IClearExpectHeaderValue provides methods to clear steps.
type IClearExpectHeaderValue interface {
IStep
// Contains clears all matching Contains steps
Contains(value ...interface{}) IStep
// Empty clears all matching Empty steps
Empty() IStep
// Equal clears all matching Equal steps
Equal(value ...interface{}) IStep
// Len clears all matching Len steps
Len() IClearExpectInt
// NotContains clears all matching NotContains steps
NotContains(value ...interface{}) IStep
// NotEmpty clears all matching NotEmpty steps
NotEmpty() IStep
// NotEqual clears all matching NotEqual steps
NotEqual(value ...interface{}) IStep
// NotOneOf clears all matching NotOneOf steps
NotOneOf(value ...interface{}) IStep
// OneOf clears all matching OneOf steps
OneOf(value ...interface{}) IStep
}
type clearExpectHeaderValue struct {
cp callPath
tr *errortrace.ErrorTrace
}
func newClearExpectHeaderValue(cp callPath) IClearExpectHeaderValue {
return &clearExpectHeaderValue{cp: cp, tr: ett.Prepare()}
}
func (v *clearExpectHeaderValue) trace() *errortrace.ErrorTrace {
return v.tr
}
func (*clearExpectHeaderValue) when() StepTime {
return cleanStep
}
func (v *clearExpectHeaderValue) callPath() callPath {
return v.cp
}
func (v *clearExpectHeaderValue) exec(hit *hitImpl) error {
if err := removeSteps(hit, v.callPath()); err != nil {
return err
}
return nil
}
func (v *clearExpectHeaderValue) Contains(value ...interface{}) IStep {
return removeStep(v.callPath().Push("Contains", value))
}
func (v *clearExpectHeaderValue) Empty() IStep {
return removeStep(v.callPath().Push("Empty", nil))
}
func (v *clearExpectHeaderValue) Equal(value ...interface{}) IStep {
return removeStep(v.callPath().Push("Equal", value))
}
func (v *clearExpectHeaderValue) Len() IClearExpectInt {
return newClearExpectInt(v.callPath().Push("Len", nil))
}
func (v *clearExpectHeaderValue) NotContains(value ...interface{}) IStep {
return removeStep(v.callPath().Push("NotContains", value))
}
func (v *clearExpectHeaderValue) NotEmpty() IStep {
return removeStep(v.callPath().Push("NotEmpty", nil))
}
func (v *clearExpectHeaderValue) NotEqual(value ...interface{}) IStep {
return removeStep(v.callPath().Push("NotEqual", value))
}
func (v *clearExpectHeaderValue) NotOneOf(value ...interface{}) IStep {
return removeStep(v.callPath().Push("NotOneOf", value))
}
func (v *clearExpectHeaderValue) OneOf(value ...interface{}) IStep {
return removeStep(v.callPath().Push("OneOf", value))
}