Home
last modified time | relevance | path

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

/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/test/org/apache/commons/collections/
H A DTestSequencedHashMap.java162 assertEquals("Both maps are same size",map.size(), getSampleKeys().length); in testFullMapSerialization()
163 assertEquals("Both maps are same size",map2.size(),getSampleKeys().length); in testFullMapSerialization()
166 map.getFirstKey(),getSampleKeys()[0]); in testFullMapSerialization()
168 map2.getFirstKey(),getSampleKeys()[0]); in testFullMapSerialization()
170 map.getLastKey(),getSampleKeys()[getSampleKeys().length - 1]); in testFullMapSerialization()
172 map2.getLastKey(),getSampleKeys()[getSampleKeys().length - 1]); in testFullMapSerialization()
H A DTestBeanMap.java162 public Object[] getSampleKeys() { in getSampleKeys() method in TestBeanMap
313 Object[] keys = getSampleKeys(); in testBeanMapClone()
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/test/org/apache/commons/collections/map/
H A DAbstractTestMap.java284 public Object[] getSampleKeys() { in getSampleKeys() method in AbstractTestMap
368 Object[] keys = getSampleKeys(); in addSampleMappings()
462 Object[] keys = getSampleKeys(); in testSampleMappings()
601 Object[] keys = getSampleKeys(); in testMapContainsKey()
676 Object[] keys = getSampleKeys(); in testMapGet()
774 Object[] keys = getSampleKeys(); in testMapPut()
880 Object[] keys = getSampleKeys(); in testMapPutNullValue()
933 Object[] keys = getSampleKeys(); in testMapPutAll()
1319 Object key2 = (getSampleKeys().length ==1 ? getSampleKeys()[0] : getSampleKeys()[1]); in testMapEntrySetIteratorEntrySetValue()
1418 return getSampleKeys(); in getFullElements()
[all …]
H A DAbstractTestOrderedMap.java66 public Object[] getSampleKeys() { in getSampleKeys() method in AbstractTestOrderedMap
67 List list = new ArrayList(Arrays.asList(super.getSampleKeys())); in getSampleKeys()
H A DTestLinkedMap.java81 Object[] keys = getSampleKeys(); in testInsertionOrder()
242 return TestLinkedMap.this.getSampleKeys(); in getFullElements()
H A DTestSingletonMap.java84 public Object[] getSampleKeys() { in getSampleKeys() method in TestSingletonMap
H A DTestListOrderedMap2.java177 return TestListOrderedMap2.this.getSampleKeys(); in getFullElements()
H A DTestLRUMap.java67 Object[] keys = getSampleKeys(); in testLRU()
145 Object[] keys = getSampleKeys(); in testAccessOrder()
H A DAbstractTestSortedMap.java134 public Object[] getSampleKeys() { in getSampleKeys() method in AbstractTestSortedMap.TestViewMap
H A DTestListOrderedMap.java357 return TestListOrderedMap.this.getSampleKeys(); in getFullElements()
H A DTestMultiKeyMap.java62 public Object[] getSampleKeys() { in getSampleKeys() method in TestMultiKeyMap
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/test/org/apache/commons/collections/bidimap/
H A DAbstractTestBidiMap.java365 Object key1 = getSampleKeys()[0]; in testMapEntrySetIteratorEntrySetValueCrossCheck()
366 Object key2 = getSampleKeys()[1]; in testMapEntrySetIteratorEntrySetValueCrossCheck()
442 public Object[] getSampleKeys() { in getSampleKeys() method in AbstractTestBidiMap.TestInverseBidiMap
446 return main.getSampleKeys(); in getSampleValues()
H A DAbstractTestSortedBidiMap.java51 sortedKeys.addAll(Arrays.asList(getSampleKeys())); in AbstractTestSortedBidiMap()
56 for (int i = 0; i < getSampleKeys().length; i++) { in AbstractTestSortedBidiMap()
57 map.put(getSampleKeys()[i], getSampleValues()[i]); in AbstractTestSortedBidiMap()
72 for (int i = 0; i < getSampleKeys().length; i++) { in AbstractTestSortedBidiMap()
73 map.put(getSampleValues()[i], getSampleKeys()[i]); in AbstractTestSortedBidiMap()
H A DTestDualTreeBidiMap2.java101 List newSortedKeys = Arrays.asList(getSampleKeys()); in testSortOrder()
/dports/java/apache-commons-beanutils/commons-beanutils-1.9.4-src/src/test/java/org/apache/commons/beanutils/
H A DBeanMapTestCase.java183 public Object[] getSampleKeys() { in getSampleKeys() method in BeanMapTestCase
344 final Object[] keys = getSampleKeys(); in testBeanMapClone()