Merge "Simplify IWeaver mocking code." am: d5dc5a7168 am: a64d04f5fe

am: db8351b2cd

Change-Id: I0f777ca9d737255f388594a228e1b9cf2cb5ca88
This commit is contained in:
Steven Moreland
2018-08-16 04:17:26 -07:00
committed by android-build-merger

View File

@@ -15,7 +15,7 @@ import android.util.Log;
import java.util.ArrayList;
import java.util.Arrays;
public class MockWeaverService implements IWeaver {
public class MockWeaverService extends IWeaver.Stub {
private static final int MAX_SLOTS = 8;
private static final int KEY_LENGTH = 256 / 8;
@@ -55,54 +55,4 @@ public class MockWeaverService implements IWeaver {
cb.onValues(WeaverStatus.FAILED, response);
}
}
@Override
public IHwBinder asBinder() {
throw new UnsupportedOperationException();
}
@Override
public ArrayList<String> interfaceChain() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public String interfaceDescriptor() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public void setHALInstrumentation() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public boolean linkToDeath(DeathRecipient recipient, long cookie) throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public void ping() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public DebugInfo getDebugInfo() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public void notifySyspropsChanged() throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public boolean unlinkToDeath(DeathRecipient recipient) throws RemoteException {
throw new UnsupportedOperationException();
}
@Override
public ArrayList<byte[]> getHashChain() throws RemoteException {
throw new UnsupportedOperationException();
}
}