(t *testing.T, want, got string)
| 410 | } |
| 411 | |
| 412 | func compareString(t *testing.T, want, got string) { |
| 413 | if want != got { |
| 414 | t.Helper() |
| 415 | t.Fatalf("%q != %q", want, got) |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | // similarGoroutines compares slice of Goroutine to be similar enough. |
| 420 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…