assertThat(idClass, classEqualTo(ObjectId.class));
}
@SuppressWarnings("rawtypes")
private void assertIdOfTypeStringIsPreserved() {
SimplePOJOWithStringId pojoWithStringId = new SimplePOJOWithStringId();
pojoWithStringId.setId("abcd1234");
ObjectToDocumentConverter<SimplePOJOWithStringId>
converter = MonjoConverterFactory.getInstance()
.configure(new DefaultNamingStrategy())
.getDefaultObjectConverter(SimplePOJOWithStringId.class);