@Test
  public void removeAllWithoutTransaction() throws Exception {
    // given
    doReturn(sessionService).when(modelService).lookupSessionService();
    doReturn(interceptorRegistry).when(modelService).lookupInterceptorRegistry();
    doReturn(converterRegistry).when(modelService).lookupConverterRegistry();
    given(converterRegistry.getModelConverterByModelType((Class) anyObject()))
        .willReturn(modelConverter);
    given(modelConverter.getType(model1)).willReturn("ItemModel");
    given(sessionService.getAttribute(DefaultModelService.ENABLE_TRANSACTIONAL_SAVES))
        .willReturn(Boolean.FALSE);

    // when (execute 2 remove* methods)
    modelService.remove(model1);
    modelService.removeAll(Arrays.asList(model1, model2));

    // then (should be 0 interactions with transaction mock)
    verify(transaction, times(0)).execute((TransactionCallback) anyObject());
  }