(t *testing.T, f func(t *testing.T, appV2 bool))
| 213 | } |
| 214 | |
| 215 | func foreachAppendable(t *testing.T, f func(t *testing.T, appV2 bool)) { |
| 216 | for _, appV2 := range []bool{false, true} { |
| 217 | t.Run(fmt.Sprintf("appV2=%v", appV2), func(t *testing.T) { |
| 218 | f(t, appV2) |
| 219 | }) |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | func TestSelectAppendable(t *testing.T) { |
| 224 | var i int |
no test coverage detected
searching dependent graphs…