Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_hashCode_withNullInput (0.1 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertNotSame(item1.hashCode(), item3.hashCode());
    
            // Consistent hashCode
            assertEquals(item1.hashCode(), item1.hashCode());
        }
    
        public void test_hashCode_withNullInput() {
            // Test hashCode with null input should throw NullPointerException
            ProtwordsItem item = new ProtwordsItem(1, null);
            try {
                item.hashCode();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top