@@ -34,7 +34,9 @@ func Test(t *testing.T) {
34
34
beOkay (func (tb testing.TB ) { test .True (tb , true ) })
35
35
beOkay (func (tb testing.TB ) { test .False (tb , false ) })
36
36
beOkay (func (tb testing.TB ) { test .Contains (tb , "hello world" , "world" ) })
37
+ beOkay (func (tb testing.TB ) { test .Contains (t , []int {1 , 2 , 3 , 4 , 5 }, 3 ) })
37
38
beOkay (func (tb testing.TB ) { test .NotContains (tb , "hello world" , "World" ) })
39
+ beOkay (func (tb testing.TB ) { test .NotContains (t , []int {1 , 2 , 3 , 4 , 5 }, 6 ) })
38
40
beBad := func (callback func (tb testing.TB )) {
39
41
t .Helper ()
40
42
var buf strings.Builder
@@ -56,7 +58,37 @@ func Test(t *testing.T) {
56
58
beBad (func (tb testing.TB ) { test .True (tb , false ) })
57
59
beBad (func (tb testing.TB ) { test .False (tb , true ) })
58
60
beBad (func (tb testing.TB ) { test .Contains (tb , "hello world" , "World" ) })
61
+ beBad (func (tb testing.TB ) { test .Contains (tb , []int {1 , 2 , 3 , 4 , 5 }, 6 ) })
59
62
beBad (func (tb testing.TB ) { test .NotContains (tb , "hello world" , "world" ) })
63
+ beBad (func (tb testing.TB ) { test .NotContains (tb , []int {1 , 2 , 3 , 4 , 5 }, 3 ) })
64
+ }
65
+
66
+ func TestContains (t * testing.T ) {
67
+ // Case 1: String containment - when first parameter is string
68
+ // The second parameter is automatically converted to string for comparison
69
+ test .Contains (t , "3.141592" , "3.14" )
70
+ test .Contains (t , "3.141592" , 3 ) // Integer is converted to string
71
+ test .Contains (t , "3.141592" , 3.14 ) // Float is converted to string
72
+
73
+ // Case 2: Custom string type compatibility
74
+ // Contains works with custom string types (~string) in any combination
75
+ type customString string
76
+ test .Contains (t , customString ("abc" ), customString ("a" ))
77
+ test .Contains (t , customString ("abc" ), "a" )
78
+ test .Contains (t , "abc" , customString ("a" ))
79
+
80
+ // Case 3: Slice element containment
81
+ // When first parameter is a slice, Contains checks if the second parameter exists as an element
82
+ test .Contains (t , []int {1 , 2 , 3 , 4 , 5 }, 3 )
83
+ test .Contains (t , []string {"apple" , "banana" , "orange" }, "banana" )
84
+ test .Contains (t , []float64 {1.1 , 2.2 , 3.3 }, 2.2 )
85
+ test .Contains (t , []byte {1 , 2 , 3 }, byte (2 ))
86
+
87
+ // Case 4: Custom type slice compatibility
88
+ // Contains works with slices of any comparable type
89
+ type customInt int
90
+ nums := []customInt {1 , 2 , 3 , 4 }
91
+ test .Contains (t , nums , customInt (2 ))
60
92
}
61
93
62
94
type mockingT struct {
0 commit comments