コード例 #1
0
 @Test
 public void contextFilePersistenceService_shouldNotSupportUnknownConfigItemType()
     throws InvalidConfigurationException, PersistenceException, IOException {
   assertThat(persistenceService.supports(UnknownConfigItem.class), is(false));
 }
コード例 #2
0
 @Test
 public void contextFilePersistenceService_shouldSupportContext()
     throws InvalidConfigurationException, PersistenceException, IOException {
   assertThat(persistenceService.supports(ContextConfiguration.class), is(true));
 }