-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
53 lines (51 loc) · 965 Bytes
/
main_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
package main
import "testing"
func Test_strStr(t *testing.T) {
type args struct {
haystack string
needle string
}
tests := []struct {
name string
args args
want int
}{
{
name: "example 1",
args: args{haystack: "sadbutsad", needle: "sad"},
want: 0,
},
{
name: "example 2",
args: args{haystack: "leetcode", needle: "leeto"},
want: -1,
},
{
name: "example 3",
args: args{haystack: "mississippi", needle: "issip"},
want: 4,
},
{
name: "example 4",
args: args{haystack: "mississippi", needle: "issipi"},
want: -1,
},
{
name: "example 5",
args: args{haystack: "a", needle: "a"},
want: 0,
},
{
name: "example 6",
args: args{haystack: "abc", needle: "c"},
want: 2,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := strStr(tt.args.haystack, tt.args.needle); got != tt.want {
t.Errorf("strStr() = %v, want %v", got, tt.want)
}
})
}
}