(t *testing.T, want, got []*Goroutine)
| 517 | } |
| 518 | |
| 519 | func compareGoroutines(t *testing.T, want, got []*Goroutine) { |
| 520 | if diff := cmp.Diff(want, got); diff != "" { |
| 521 | t.Helper() |
| 522 | t.Fatalf("Goroutine mismatch (-want +got):\n%s", diff) |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | func compareStacks(t *testing.T, want, got *Stack) { |
| 527 | if diff := cmp.Diff(want, got); diff != "" { |
no outgoing calls
no test coverage detected
searching dependent graphs…