Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee538d63 authored by Nathan Harold's avatar Nathan Harold Committed by Automerger Merge Worker
Browse files

Merge changes from topic "servicelocation" am: 17b05cb6

Original change: https://android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/1355900

Change-Id: Iec425d08a23f337e22b67fee7d7a6aa9b48d9f03
parents a5825258 17b05cb6
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -1792,22 +1792,6 @@ public class ServiceStateTrackerTest extends TelephonyTest {
        assertEquals(sst.getDesiredPowerState(), true);
    }

    @Test
    @MediumTest
    public void testEnableLocationUpdates() throws Exception {
        sst.enableLocationUpdates();
        verify(mSimulatedCommandsVerifier, times(1)).setLocationUpdates(eq(true),
                any(Message.class));
    }

    @Test
    @SmallTest
    public void testDisableLocationUpdates() throws Exception {
        sst.disableLocationUpdates();
        verify(mSimulatedCommandsVerifier, times(1)).setLocationUpdates(eq(false),
                nullable(Message.class));
    }

    @Test
    @SmallTest
    public void testGetCurrentDataRegState() throws Exception {