Ignore:
Timestamp:
03/07/14 16:30:01 (10 years ago)
Author:
Twan Goosen
Message:

ignored and technical fields are now configured through VloConfig?.xml

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.0/vlo-commons/src/test/java/eu/clarin/cmdi/vlo/config/DefaultVloConfigFactoryTest.java

    r4597 r4654  
    971971        assertEquals("collection", result);
    972972    }
     973   
     974    @Test
     975    public void testGetIgnoredFields() {
     976        Set<String> result = config.getIgnoredFields();
     977        assertEquals(1, result.size());
     978    }
     979   
     980   
     981    @Test
     982    public void testGetTechnicalFields() {
     983        Set<String> result = config.getTechnicalFields();
     984        assertEquals(7, result.size());
     985    }
    973986}
     987
Note: See TracChangeset for help on using the changeset viewer.