(t *testing.T, json string, paths, expected []string)
| 868 | testMany(true, `[world]`, strings.Repeat("a.", 70)+"hello") |
| 869 | } |
| 870 | func testMany(t *testing.T, json string, paths, expected []string) { |
| 871 | testManyAny(t, json, paths, expected, true) |
| 872 | testManyAny(t, json, paths, expected, false) |
| 873 | } |
| 874 | func testManyAny(t *testing.T, json string, paths, expected []string, |
| 875 | bytes bool) { |
| 876 | var result []Result |
no test coverage detected
searching dependent graphs…