tests: add testSubkeyAdd

This commit is contained in:
Vincent Breitmoser
2014-07-10 01:38:57 +02:00
parent 0afd979665
commit 90f546a4e8
4 changed files with 69 additions and 17 deletions

View File

@@ -101,6 +101,10 @@ public abstract class WrappedKeyRing extends KeyRing {
abstract public IterableIterator<WrappedPublicKey> publicKeyIterator();
public byte[] getEncoded() throws IOException {
return getRing().getEncoded();
}
public UncachedKeyRing getUncached() {
return new UncachedKeyRing(getRing());
}

View File

@@ -325,6 +325,7 @@ public class OperationResultParcel implements Parcelable {
}
public void add(LogLevel level, LogType type, int indent) {
Log.d(Constants.TAG, type.toString());
parcels.add(new OperationResultParcel.LogEntryParcel(level, type, indent, (Object[]) null));
}