- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testEntry (0.04 sec)
-
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)