Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_equals_withUnsortedInputs (0.08 seconds)

  1. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Test with null
            assertFalse(item1.equals(null));
    
            // Test with different class
            assertFalse(item1.equals("string"));
        }
    
        @Test
        public void test_equals_withUnsortedInputs() {
            // Test that equals works correctly even when inputs are initially unsorted
            String[] inputs1 = { "z", "a", "m" };
            String[] inputs2 = { "m", "z", "a" };
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16K bytes
    - Click Count (0)
Back to Top