(tb testing.TB)
| 1033 | } |
| 1034 | |
| 1035 | func largeProfile(tb testing.TB) *profile.Profile { |
| 1036 | tb.Helper() |
| 1037 | input := proftest.LargeProfile(tb) |
| 1038 | prof, err := profile.Parse(bytes.NewBuffer(input)) |
| 1039 | if err != nil { |
| 1040 | tb.Fatal(err) |
| 1041 | } |
| 1042 | return prof |
| 1043 | } |
| 1044 | |
| 1045 | var autoCompleteTests = []struct { |
| 1046 | in string |
no test coverage detected
searching dependent graphs…