Searched defs:TEST_I18N_KEY (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/keystore/tests/src/android/security/
H A DKeyStoreTest.java60 private static final String TEST_I18N_KEY = "\u4F60\u597D, \u4E16\u754C"; field in class:KeyStoreTest
61 private static final byte[] TEST_I18N_VALUE = TEST_I18N_KEY.getBytes(StandardCharsets.UTF_8);
196 assertFalse(mKeyStore.put(TEST_I18N_KEY, TEST_I18N_VALUE, KeyStore.UID_SELF,
198 assertFalse(mKeyStore.contains(TEST_I18N_KEY));
199 mKeyStore.onUserPasswordChanged(TEST_I18N_KEY);
200 assertTrue(mKeyStore.put(TEST_I18N_KEY, TEST_I18N_VALUE, KeyStore.UID_SELF,
202 assertTrue(mKeyStore.contains(TEST_I18N_KEY));

Completed in 77 milliseconds