diff options
author | Art O Cathain <art.home@gmail.com> | 2014-06-21 10:47:07 +0100 |
---|---|---|
committer | Art O Cathain <art.home@gmail.com> | 2014-06-21 17:44:04 +0100 |
commit | 0af2b27cb3d286f3f4e2f830c78b307ca222ff31 (patch) | |
tree | 8b2d2db6cf2cfd900833b9a8db2c2a42aee0a1a0 /OpenKeychain/src/test/java/tests | |
parent | a1525bffe23fd0f86e77250f894eacbc481aed77 (diff) | |
download | open-keychain-0af2b27cb3d286f3f4e2f830c78b307ca222ff31.tar.gz open-keychain-0af2b27cb3d286f3f4e2f830c78b307ca222ff31.tar.bz2 open-keychain-0af2b27cb3d286f3f4e2f830c78b307ca222ff31.zip |
VERY basic test for save keyring
Diffstat (limited to 'OpenKeychain/src/test/java/tests')
-rw-r--r-- | OpenKeychain/src/test/java/tests/PgpDecryptVerifyTest.java (renamed from OpenKeychain/src/test/java/tests/RoboTest.java) | 2 | ||||
-rw-r--r-- | OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/OpenKeychain/src/test/java/tests/RoboTest.java b/OpenKeychain/src/test/java/tests/PgpDecryptVerifyTest.java index 1a4f6b4aa..346a1f9df 100644 --- a/OpenKeychain/src/test/java/tests/RoboTest.java +++ b/OpenKeychain/src/test/java/tests/PgpDecryptVerifyTest.java @@ -9,7 +9,7 @@ import org.sufficientlysecure.keychain.testsupport.PgpVerifyTestingHelper; @RunWith(RobolectricTestRunner.class) @org.robolectric.annotation.Config(emulateSdk = 18) // Robolectric doesn't yet support 19 -public class RoboTest { +public class PgpDecryptVerifyTest { @Test public void testVerifySuccess() throws Exception { diff --git a/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java b/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java new file mode 100644 index 000000000..265e01170 --- /dev/null +++ b/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java @@ -0,0 +1,20 @@ +package tests; + +import org.junit.Assert; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.robolectric.*; +import org.openintents.openpgp.OpenPgpSignatureResult; +import org.sufficientlysecure.keychain.testsupport.KeyringTestingHelper; +import org.sufficientlysecure.keychain.testsupport.PgpVerifyTestingHelper; + +@RunWith(RobolectricTestRunner.class) +@org.robolectric.annotation.Config(emulateSdk = 18) // Robolectric doesn't yet support 19 +public class ProviderHelperKeyringTest { + + @Test + public void testSavePublicKeyring() throws Exception { + Assert.assertTrue(new KeyringTestingHelper(Robolectric.application).addKeyring()); + } + +} |