@@ -30,7 +30,7 @@ import (
30
30
// All can be used as a parameter for expected.Output to group a set of comparators.
31
31
func All (comparators ... test.Comparator ) test.Comparator {
32
32
//nolint:thelper
33
- return func (stdout string , info string , t * testing.T ) {
33
+ return func (stdout , info string , t * testing.T ) {
34
34
t .Helper ()
35
35
36
36
for _ , comparator := range comparators {
@@ -43,17 +43,18 @@ func All(comparators ...test.Comparator) test.Comparator {
43
43
// is found contained in the output.
44
44
func Contains (compare string ) test.Comparator {
45
45
//nolint:thelper
46
- return func (stdout string , info string , t * testing.T ) {
46
+ return func (stdout , info string , t * testing.T ) {
47
47
t .Helper ()
48
48
assert .Check (t , strings .Contains (stdout , compare ),
49
49
fmt .Sprintf ("Output does not contain: %q" , compare )+ info )
50
50
}
51
51
}
52
52
53
- // DoesNotContain is to be used for expected.Output to ensure a comparison string is NOT found in the output.
53
+ // DoesNotContain is to be used for expected.Output to ensure a comparison string is NOT found in
54
+ // the output.
54
55
func DoesNotContain (compare string ) test.Comparator {
55
56
//nolint:thelper
56
- return func (stdout string , info string , t * testing.T ) {
57
+ return func (stdout , info string , t * testing.T ) {
57
58
t .Helper ()
58
59
assert .Check (t , ! strings .Contains (stdout , compare ),
59
60
fmt .Sprintf ("Output does contain: %q" , compare )+ info )
@@ -63,7 +64,7 @@ func DoesNotContain(compare string) test.Comparator {
63
64
// Equals is to be used for expected.Output to ensure it is exactly the output.
64
65
func Equals (compare string ) test.Comparator {
65
66
//nolint:thelper
66
- return func (stdout string , info string , t * testing.T ) {
67
+ return func (stdout , info string , t * testing.T ) {
67
68
t .Helper ()
68
69
assert .Equal (t , compare , stdout , info )
69
70
}
@@ -73,7 +74,7 @@ func Equals(compare string) test.Comparator {
73
74
// Provisional - expected use, but have not seen it so far.
74
75
func Match (reg * regexp.Regexp ) test.Comparator {
75
76
//nolint:thelper
76
- return func (stdout string , info string , t * testing.T ) {
77
+ return func (stdout , info string , t * testing.T ) {
77
78
t .Helper ()
78
79
assert .Check (t , reg .MatchString (stdout ), "Output does not match: " + reg .String (), info )
79
80
}
0 commit comments