Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_large_values (0.06 sec)

  1. src/test/java/org/codelibs/fess/util/DocListTest.java

        }
    
        public void test_serialization() {
            DocList docList = new DocList();
    
            assertTrue(docList instanceof java.io.Serializable);
        }
    
        public void test_large_values() {
            DocList docList = new DocList();
    
            long largeValue = Long.MAX_VALUE - 1000;
    
            docList.addContentSize(largeValue);
            assertEquals(largeValue, docList.getContentSize());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top