(a, b []string)
| 6 | ) |
| 7 | |
| 8 | func cmpLists(a, b []string) bool { |
| 9 | if len(a) != len(b) { |
| 10 | return false |
| 11 | } |
| 12 | for i := range a { |
| 13 | if a[i] != b[i] { |
| 14 | return false |
| 15 | } |
| 16 | } |
| 17 | return true |
| 18 | } |
| 19 | |
| 20 | func TestFunc(t *testing.T) { |
| 21 | var values []string |
no outgoing calls
no test coverage detected