Home
last modified time | relevance | path

Searched refs:resArray (Results 1 – 3 of 3) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
DX509KeyManagerTest.java672 String[] resArray = manager.getClientAliases(TYPE_RSA, null); in test_getClientAliases() local
673 assertNotNull(resArray); in test_getClientAliases()
674 assertEquals(3, resArray.length); in test_getClientAliases()
675 assertKnownAliases(resArray); in test_getClientAliases()
698 String[] resArray = manager.getServerAliases(TYPE_RSA, null); in test_getServerAliases() local
699 assertNotNull(resArray); in test_getServerAliases()
700 assertEquals("Incorrect length", 1, resArray.length); in test_getServerAliases()
701 assertEquals("Incorrect aliase", "serverkey_00", resArray[0].toLowerCase()); in test_getServerAliases()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/x500/
DX500PrincipalTest.java87 byte[] resArray = xpr.getEncoded(); in test_X500Principal_02()
88 assertEquals(ba.length, resArray.length); in test_X500Principal_02()
122 byte[] resArray = xpr.getEncoded(); in test_X500Principal_03()
123 assertEquals(ba.length, resArray.length); in test_X500Principal_03()
/libcore/luni/src/test/java/libcore/java/sql/
DOldStatementTest.java681 int[] resArray = st.executeBatch(); in testExecuteBatch() local
682 assertTrue(java.util.Arrays.equals(result, resArray)); in testExecuteBatch()