(m reflect.Value)
| 247 | } |
| 248 | |
| 249 | func sortedMapKeys(m reflect.Value) []string { |
| 250 | keys := make([]string, m.Len()) |
| 251 | for i, k := range m.MapKeys() { |
| 252 | keys[i] = k.String() |
| 253 | } |
| 254 | sort.Strings(keys) |
| 255 | return keys |
| 256 | } |
| 257 | |
| 258 | func runTestFunc(runTest interface{}, t *testing.T, name string, m reflect.Value, key string) { |
| 259 | reflect.ValueOf(runTest).Call([]reflect.Value{ |
no test coverage detected