(b *testing.B)
| 1280 | } |
| 1281 | |
| 1282 | func BenchmarkGenericArrayValueStrings(b *testing.B) { |
| 1283 | x := make([]string, 10) |
| 1284 | for i := 0; i < len(x); i++ { |
| 1285 | x[i] = strings.Repeat(`abc"def\ghi`, 5) |
| 1286 | } |
| 1287 | a := GenericArray{x} |
| 1288 | |
| 1289 | for i := 0; i < b.N; i++ { |
| 1290 | a.Value() |
| 1291 | } |
| 1292 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…