(t *testing.T, want, got string)
| 130 | // |
| 131 | |
| 132 | func compareString(t *testing.T, want, got string) { |
| 133 | if diff := cmp.Diff(want, got); diff != "" { |
| 134 | t.Helper() |
| 135 | t.Fatalf("Mismatch (-want +got):\n%s", diff) |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | func TestMain(m *testing.M) { |
| 140 | flag.Parse() |
no outgoing calls
no test coverage detected
searching dependent graphs…