Home
last modified time | relevance | path

Searched refs:locationWithAccuracy (Results 1 – 1 of 1) sorted by relevance

/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/populator/
DLocationProviderImplTest.java45 private Location locationWithAccuracy; field in LocationProviderImplTest
51 locationWithAccuracy = new Location("provider"); in setUp()
52 locationWithAccuracy.setLatitude(40.7); in setUp()
53 locationWithAccuracy.setLongitude(-74.0); in setUp()
54 locationWithoutAccuracy = new Location(locationWithAccuracy); in setUp()
55 locationWithAccuracy.setAccuracy(10); in setUp()
68 .thenReturn(locationWithAccuracy); in getLocation_whenEitherAccessLocationPermissionGranted_returnsLocation()
74 assertThat(locationProvider.get()).hasValue(locationWithAccuracy); in getLocation_whenEitherAccessLocationPermissionGranted_returnsLocation()
81 assertThat(locationProvider.get()).hasValue(locationWithAccuracy); in getLocation_whenEitherAccessLocationPermissionGranted_returnsLocation()
85 assertThat(locationProvider.get()).hasValue(locationWithAccuracy); in getLocation_whenEitherAccessLocationPermissionGranted_returnsLocation()
[all …]