Helper functions
(count int)
| 226 | |
| 227 | // Helper functions |
| 228 | func generateUniqueStrings(count int) []string { |
| 229 | result := make([]string, count) |
| 230 | for i := 0; i < count; i++ { |
| 231 | result[i] = fmt.Sprintf("unique_%d", i) |
| 232 | } |
| 233 | return result |
| 234 | } |
| 235 | |
| 236 | func generateRepeatedStrings(count, uniqueCount int) []string { |
| 237 | result := make([]string, count) |
no outgoing calls
no test coverage detected