Skip to content

Commit

Permalink
Add more tests in any
Browse files Browse the repository at this point in the history
  • Loading branch information
denisvmedia committed Sep 23, 2023
1 parent 256eccd commit 0f78543
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions testdata/enforce-slice-style-any.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ func somefn() {
m0 := make([]string, 10)
m1 := make([]string, 0, 10)
m2 := make([]string, 0)
m3 := []string{}
m4 := []string{"v1", "v2"}
m5 := [8]string{}
m6 := [...]string{}
m3 := make([]string, 0, 0)
m4 := []string{}
m5 := []string{"v1", "v2"}
m6 := [8]string{}
m7 := [...]string{}

_ = m0
_ = m1
Expand All @@ -16,6 +17,7 @@ func somefn() {
_ = m4
_ = m5
_ = m6
_ = m7
}

type Slice []string
Expand All @@ -24,39 +26,44 @@ func somefn2() {
m0 := make(Slice, 10)
m1 := make(Slice, 0, 10)
m2 := make(Slice, 0)
m3 := Slice{}
m4 := Slice{"v1", "v2"}
m3 := make(Slice, 0, 0)
m4 := Slice{}
m5 := Slice{"v1", "v2"}

_ = m0
_ = m1
_ = m2
_ = m3
_ = m4
_ = m5
}

type SliceSlice Slice

func somefn3() {
m2 := make(SliceSlice, 0)
m3 := make(SliceSlice, 0, 0)
m0 := make(SliceSlice, 10)
m1 := make(SliceSlice, 0, 10)
m2 := make(SliceSlice, 0)
m3 := SliceSlice{}
m4 := SliceSlice{"v1", "v2"}
m4 := SliceSlice{}
m5 := SliceSlice{"v1", "v2"}

_ = m0
_ = m1
_ = m2
_ = m3
_ = m4
_ = m5
}

func somefn4() {
m1 := [][]string{}
m1["el0"] = make([]string, 10)
m1["el1"] = make([]string, 0, 10)
m1["el2"] = make([]string, 0)
m1["el3"] = []string{}
m1["el4"] = []string{"v1", "v2"}
m1["el3"] = make([]string, 0, 0)
m1["el4"] = []string{}
m1["el5"] = []string{"v1", "v2"}

_ = m1
}

0 comments on commit 0f78543

Please sign in to comment.