Searched refs:mySet (Results 1 - 2 of 2) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractMapTest.java46 final Set mySet = new HashSet(1); field in class:AbstractMapTest.MyMap
49 mySet.add(new Map.Entry() {
69 return mySet;
H A DCollectionsTest.java1523 Set mySet = Collections.synchronizedSet(smallSet);
1524 mySet.add(null);
1525 assertTrue("Trying to use nulls in list failed", mySet.contains(null));
1535 mySet = Collections.synchronizedSet(smallSet);
1536 mySet.add(smallSet);
1537 assertTrue("should contain self ref", mySet.toString().indexOf("(this") > -1);
1872 Set mySet = Collections.unmodifiableSet(new HashSet());
1873 assertTrue("Should not contain null", !mySet.contains(null));
1874 mySet = Collections.unmodifiableSet(Collections.singleton(null));
1875 assertTrue("Should contain null", mySet
[all...]

Completed in 124 milliseconds