Compare maps ignoring given fields
问题 I feel like I'm missing something obvious here, but the documentation is letting me down. I'm attempting to compare two maps while ignoring a set of fields in assertJ. I would like to see this assert pass: private static final String[] IGNORED_FIELDS = { "ignored", "another" }; private static final Map<String, Object> TEST_PAYLOAD = ImmutableMap.of("test", "payload", "example", "value", "ignored", "field"); private static final Map<String, Object> COMPARISON_PAYLOAD = ImmutableMap.of("test",