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

Commit 2498a29e authored by Pavel Grafov's avatar Pavel Grafov
Browse files

Add new methods to the mock.

Test: builds
Bug: 72628179
Change-Id: I19549bdf718754fc6ae8cab271e9c481e824b67e
parent 1f2e8825
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -988,4 +988,14 @@ public class ConnectivityServiceMock extends IConnectivityManager.Stub
    public NetworkRequest getDefaultRequest() {
    public NetworkRequest getDefaultRequest() {
        throw new RuntimeException("not implemented");
        throw new RuntimeException("not implemented");
    }
    }

    @Override
    public boolean isCallerCurrentAlwaysOnVpnApp() {
        throw new RuntimeException("not implemented");
    }

    @Override
    public boolean isCallerCurrentAlwaysOnVpnLockdownApp() {
        throw new RuntimeException("not implemented");
    }
}
}