public class GtfsStopRegionsSourceImplTest {
@Test
public void test() {
GtfsDao dao = Mockito.mock(GtfsDao.class);
Stop a = new Stop();
a.setLat(47.664809318453564);
a.setLon(-122.3023796081543);
Stop b = new Stop();
b.setLat(47.66931784410792);
b.setLon(-122.38992691040039);
Mockito.when(dao.getAllStops()).thenReturn(Arrays.asList(a, b));
GtfsStopRegionsSourceImpl source = new GtfsStopRegionsSourceImpl();
source.setGtfsDao(dao);
source.setRadius(2500);