(t *testing.T)
| 120 | } |
| 121 | |
| 122 | func TestArrayContainerUnsupportedType(t *testing.T) { |
| 123 | a := container(newArrayContainer()) |
| 124 | testContainerPanics(t, a) |
| 125 | |
| 126 | b := container(newBitmapContainer()) |
| 127 | testContainerPanics(t, b) |
| 128 | } |
| 129 | |
| 130 | func testContainerPanics(t *testing.T, c container) { |
| 131 | f := &struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…