Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for emptyArray (0.04 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java

        }
    
        public void test_emptyArrayValues() {
            // Test with empty array
            ExtractData data = new ExtractData();
    
            String[] emptyArray = {};
            data.putValues("empty", emptyArray);
    
            String[] retrieved = data.getValues("empty");
            assertNotNull(retrieved);
            assertEquals(0, retrieved.length);
        }
    
        public void test_nullValues() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        final Ordering<T> ordering;
        final List<T> strictlyOrderedList;
        final T[] emptyArray;
    
        Scenario(Ordering<T> ordering, List<T> strictlyOrderedList, T[] emptyArray) {
          this.ordering = ordering;
          this.strictlyOrderedList = strictlyOrderedList;
          this.emptyArray = emptyArray;
        }
    
        void testCompareTo() {
          testComparator(ordering, strictlyOrderedList);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

        final Ordering<T> ordering;
        final List<T> strictlyOrderedList;
        final T[] emptyArray;
    
        Scenario(Ordering<T> ordering, List<T> strictlyOrderedList, T[] emptyArray) {
          this.ordering = ordering;
          this.strictlyOrderedList = strictlyOrderedList;
          this.emptyArray = emptyArray;
        }
    
        void testCompareTo() {
          testComparator(ordering, strictlyOrderedList);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/SerializeUtilTest.java

         *
         * @throws Exception
         */
        public void testFromBinaryToObject_EmptyArray() throws Exception {
            final String[] emptyArray = new String[0];
            final byte[] binary = SerializeUtil.fromObjectToBinary(emptyArray);
            final String[] result = (String[]) SerializeUtil.fromBinaryToObject(binary);
            assertEquals(0, result.length);
        }
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top