Home
last modified time | relevance | path

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

/cts/tests/tests/security/src/android/security/cts/
DCertificateTest.java72 Set<String> deviceCertificates = getDeviceCertificates(); in testNoRemovedCertificates() local
73 expectedCertificates.removeAll(deviceCertificates); in testNoRemovedCertificates()
100 Set<String> deviceCertificates = getDeviceCertificates(); in testNoAddedCertificates() local
101 deviceCertificates.removeAll(expectedCertificates); in testNoAddedCertificates()
102 assertEquals("Unknown CA certificates", Collections.EMPTY_SET, deviceCertificates); in testNoAddedCertificates()
111 Set<String> deviceCertificates = getDeviceCertificates(); in testBlockCertificates() local
112 deviceCertificates.retainAll(blockCertificates); in testBlockCertificates()
113 assertEquals("Blocked CA certificates", Collections.EMPTY_SET, deviceCertificates); in testBlockCertificates()