use of com.mongodb.client.model.IndexOptions in project mongo-java-driver by mongodb.
the class AddIndexAcceptanceTest method shouldCreateABackgroundIndex.
@Test
@Ignore("Ingore until SERVER-16274 if resolved")
public void shouldCreateABackgroundIndex() {
collection.createIndex(new Document("theField", 1), new IndexOptions().background(true));
Boolean background = collection.listIndexes().into(new ArrayList<Document>()).get(1).getBoolean("background");
assertThat("Should be a background index", background, is(true));
}
Aggregations