use of org.codice.ddf.spatial.admin.module.service.Geocoding in project ddf by codice.
the class TestGeocodingMbean method setUp.
@Before
public void setUp() {
geocoding = new Geocoding();
geoEntryExtractor = Mockito.mock(GeoEntryExtractor.class);
geoEntryIndexer = Mockito.mock(GeoEntryIndexer.class);
geocoding.setGeoEntryIndexer(geoEntryIndexer);
geocoding.setGeoEntryExtractor(geoEntryExtractor);
}
Aggregations