- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testIsEmptyCollectionOfQ (0.08 sec)
-
src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java
public class CollectionsUtilTest { /** * Test method for * {@link org.codelibs.core.collection.CollectionsUtil#isEmpty(java.util.Collection)} * . */ @Test public void testIsEmptyCollectionOfQ() { Collection<String> c = null; assertThat(CollectionsUtil.isEmpty(c), is(true)); c = new ArrayList<String>(); assertThat(CollectionsUtil.isEmpty(c), is(true)); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0)