Is there a way to use Google Truth to compare a protobuff to a string? I am hoping to find something that looks like this:
assertThat(myProto).isEqualToString("a: 1\n b:2")
Is there a way to use Google Truth to compare a protobuff to a string? I am hoping to find something that looks like this:
assertThat(myProto).isEqualToString("a: 1\n b:2")
Truth provides an extension for protocol buffer assertions, which is probably what you should use. Asserting on a message's string format is going to be brittle, and failures will be harder to understand.
That said you certainly can do what you're asking: