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

Commit 27504756 authored by Pavel Grafov's avatar Pavel Grafov Committed by Gerrit Code Review
Browse files

Merge "Add new methods to the mock."

parents 51373fdb 2498a29e
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");
    }
}
}