- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testRemoveFirst (0.16 seconds)
-
src/test/java/org/codelibs/core/collection/ArrayUtilTest.java
assertThat(ArrayUtil.indexOf(array, 'a'), is(0)); assertThat(ArrayUtil.indexOf(array, 'd'), is(-1)); } /** * @throws Exception */ @Test public void testRemoveFirst() throws Exception { final String[] array = new String[] { "111", "222", "333" }; final String[] newArray = ArrayUtil.remove(array, "111"); assertThat(newArray.length, is(2));
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 10.6K bytes - Click Count (0)