- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testEntry (0.07 sec)
-
guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java
NavigableMap<K, V> outer = Synchronized.navigableMap(inner, mutex); return outer; } static class TestEntry<K, V> extends ForwardingMapEntry<K, V> implements Serializable { private final Entry<K, V> delegate; private final Object mutex; TestEntry(Entry<K, V> delegate, Object mutex) { this.delegate = delegate; this.mutex = mutex; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/SLinkedListTest.java
list.addLast("3"); list.set(1, "4"); assertThat(list.get(1), is("4")); } /** * @throws Exception */ @Test public void testEntry() throws Exception { list.addLast("1"); list.addLast("2"); list.addLast("3"); SLinkedList<String>.Entry e = list.getFirstEntry(); assertThat(e.getPrevious(), is(nullValue()));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.3K bytes - Viewed (0)