obj.get("version") instanceof Integer);
RegisterResponseEntry rre = new RegisterResponseEntry((Integer)obj.get("id"),
((Integer)obj.get("version")).shortValue(),
(String)obj.get("schema"));
assertEquals("unexpected source id", 4002, rre.getId());
Schema resSchema = Schema.parse(rre.getSchema());
assertEquals("unexpected source-schema name for source id 4002", "test4.source2_v1", resSchema.getFullName());
// There's no guarantee of a metadataSchemas entry in general, but we pre-stuffed our
// VersionedSchemaSetBackedRegistryService with one in the test's constructor, so we
// expect the relay to hand it back to us. Or else.
/* disabled for now since simplistic relay implementation has been disabled; reenable/update/modify as part of DDSDBUS-2093/2096 (TODO)