OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:invalidservicenames
(Results
1 - 1
of
1
) sorted by null
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecurityTest.java
143
String[]
invalidServiceNames
= { "Rubbish", "", null };
150
for (int i = 0; i <
invalidServiceNames
.length; i++) {
151
Set<String> algs = Security.getAlgorithms(
invalidServiceNames
[i]);
152
assertTrue("services with specified name: " +
invalidServiceNames
[i], algs.size() == 0);
Completed in 194 milliseconds