Search in sources :

Example 1 with Geocoding

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);
}
Also used : GeoEntryIndexer(org.codice.ddf.spatial.geocoding.GeoEntryIndexer) Geocoding(org.codice.ddf.spatial.admin.module.service.Geocoding) GeoEntryExtractor(org.codice.ddf.spatial.geocoding.GeoEntryExtractor) Before(org.junit.Before)

Aggregations

Geocoding (org.codice.ddf.spatial.admin.module.service.Geocoding)1 GeoEntryExtractor (org.codice.ddf.spatial.geocoding.GeoEntryExtractor)1 GeoEntryIndexer (org.codice.ddf.spatial.geocoding.GeoEntryIndexer)1 Before (org.junit.Before)1