Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTelephonyManagerTest.java199 CellLocation mockCellLocation = mock(CellLocation.class); in shouldGiveCellLocation() local
200 shadowOf(telephonyManager).setCellLocation(mockCellLocation); in shouldGiveCellLocation()
201 assertEquals(mockCellLocation, telephonyManager.getCellLocation()); in shouldGiveCellLocation()
202 verify(listener).onCellLocationChanged(mockCellLocation); in shouldGiveCellLocation()