(t *testing.T)
| 6 | ) |
| 7 | |
| 8 | func TestRead(t *testing.T) { |
| 9 | for i := 0; i < 100000; i++ { |
| 10 | if i%300 == 0 { |
| 11 | array := GetArrayOfSize(i) |
| 12 | |
| 13 | if len(array) != i { |
| 14 | fmt.Println(array) |
| 15 | t.Error() |
| 16 | } |
| 17 | } |
| 18 | } |
| 19 | } |
nothing calls this directly
no test coverage detected