(t *testing.T, s string)
| 493 | } |
| 494 | |
| 495 | func makeProtoString(t *testing.T, s string) string { |
| 496 | t.Helper() |
| 497 | m := makeProto(t, s) |
| 498 | return test.Must(MarshalProto(m)) |
| 499 | } |
| 500 | |
| 501 | func TestProtoDeduplicator(t *testing.T) { |
| 502 | a, ctx := test.New(t) |
no test coverage detected