- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testJoinWithAllNullElements (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/internal/util/StringUtilTest.java
String result = StringUtil.join(",", "first", null, "third"); assertEquals("first,null,third", result); } @Test @DisplayName("Should handle all null elements") void testJoinWithAllNullElements() { String result = StringUtil.join(",", null, null, null); assertEquals("null,null,null", result); } @Test @DisplayName("Should handle empty string elements")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 9K bytes - Click Count (0)