(runTest interface{}, t *testing.T, name string, m reflect.Value, key string)
| 256 | } |
| 257 | |
| 258 | func runTestFunc(runTest interface{}, t *testing.T, name string, m reflect.Value, key string) { |
| 259 | reflect.ValueOf(runTest).Call([]reflect.Value{ |
| 260 | reflect.ValueOf(t), |
| 261 | reflect.ValueOf(name), |
| 262 | m.MapIndex(reflect.ValueOf(key)), |
| 263 | }) |
| 264 | } |