@Test
 public void contextFilePersistenceService_shouldNotSupportUnknownConfigItemType()
     throws InvalidConfigurationException, PersistenceException, IOException {
   assertThat(persistenceService.supports(UnknownConfigItem.class), is(false));
 }
 @Test
 public void contextFilePersistenceService_shouldSupportContext()
     throws InvalidConfigurationException, PersistenceException, IOException {
   assertThat(persistenceService.supports(ContextConfiguration.class), is(true));
 }