@Test
public void should_exception_when_delete_with_consistency() throws Exception {
exception.expect(AchillesException.class);
exception.expectMessage("Runtime custom Consistency Level and/or async listeners cannot be set for batch mode. Please set the Consistency Levels at batch start with 'startBatch(consistencyLevel)' and async listener using endBatch(...)");
batch.delete(new CompleteBean(), withConsistency(ONE));
}