.providedId().name( "myID" )
//Entity missing both @DocumentId and @ProvidedId:
.property( "title", ElementType.FIELD ).field()
.property( "text", ElementType.FIELD ).field()
;
SearchConfigurationForTest cfg = new SearchConfigurationForTest()
.setProgrammaticMapping( mapping )
//.setIdProvidedImplicit( false ) //Test it's the default
.addClass( Book.class );
storeBooksViaProvidedId( cfg, "myID", false );
}