use of com.mongodb.client.model.DBCollectionRemoveOptions in project morphia by mongodb.
the class DeleteOptionsTest method passThrough.
@Test
public void passThrough() {
Collation collation = Collation.builder().locale("en").caseLevel(true).build();
DBCollectionRemoveOptions options = new DeleteOptions().collation(collation).writeConcern(WriteConcern.JOURNALED).getOptions();
assertEquals(collation, options.getCollation());
assertEquals(WriteConcern.JOURNALED, options.getWriteConcern());
}
Aggregations