(slice []string, val string)
| 18 | ) |
| 19 | |
| 20 | func containsString(slice []string, val string) bool { |
| 21 | for _, item := range slice { |
| 22 | if item == val { |
| 23 | return true |
| 24 | } |
| 25 | } |
| 26 | return false |
| 27 | } |
| 28 | |
| 29 | func TestDownloadOrder(t *testing.T) { |
| 30 | buff := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} |
no outgoing calls
no test coverage detected