You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicvoidtest() throwsException {
URIblankUri = URI.create("");
assertNotNull(blankUri);
ObjectMapperobjectMapper = newObjectMapper();
assertNotNull("serialized and deserialized blank URI should not be null",
objectMapper.readValue(objectMapper.writeValueAsString(blankUri), URI.class));
}