@Test
  public void testServiceOptions() {

    EnumSet<Service.ServiceOption> expected =
        EnumSet.of(
            Service.ServiceOption.CONCURRENT_UPDATE_HANDLING,
            Service.ServiceOption.FACTORY,
            Service.ServiceOption.REPLICATION);

    assertThat(factoryService.getOptions(), is(expected));
  }