Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 150 for getter (0.04 seconds)

  1. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

            // These tests verify the PingResponse class structure is correct
            assertTrue(true);
        }
    
        @Test
        public void test_getClusterName_returnsCorrectValue() {
            // Test cluster name getter exists
            FessConfig mockConfig = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public Set<String> getApiPingEsFieldSet() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

         */
        @Test
        public void test_constructor() {
            FessIntervalController controller = new FessIntervalController();
            assertNotNull(controller);
        }
    
        /**
         * Test getter and setter for delayMillisAfterProcessing
         */
        @Test
        public void test_delayMillisAfterProcessing() {
            FessIntervalController controller = new FessIntervalController();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            // Test direct field access through inheritance
            TestDictionaryItem item = new TestDictionaryItem();
    
            // Direct field assignment
            item.id = 999L;
    
            // Verify through getter
            assertEquals(999L, item.getId());
    
            // Verify direct field access
            assertEquals(999L, item.id);
        }
    
        @Test
        public void test_sequentialIdAssignment() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertEquals(123, item.getId());
            assertEquals("and", item.getInput());
            assertNull(item.getNewInput());
        }
    
        @Test
        public void test_getNewInput_setNewInput() {
            // Test getter and setter for newInput
            StopwordsItem item = new StopwordsItem(1, "or");
            assertNull(item.getNewInput());
    
            item.setNewInput("nor");
            assertEquals("nor", item.getNewInput());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java

            }
        }
    
        @Test
        public void test_genericTypeSafety_consistencyBetweenConstructorAndGetter() {
            // Verify consistency between constructor parameter type and getter return type
            // This test ensures the generic type change is consistent throughout the class
    
            // Test with RootAction.class
            Class<? extends RootAction> inputClass1 = RootAction.class;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            assertNotNull(view);
            assertNotNull(view.getQueryMap());
            assertTrue(view.getQueryMap().isEmpty());
            assertNull(view.getTitle());
        }
    
        // Test title getter and setter
        @Test
        public void test_getTitle() {
            assertNull(facetQueryView.getTitle());
    
            String testTitle = "Test Title";
            facetQueryView.setTitle(testTitle);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  7. src/main/webapp/js/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n","import modifiers from '../modifiers/index';\n\n/**\n * Default options provided to Popper.js constructor.<br />\n *...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 120.9K bytes
    - Click Count (0)
  9. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/moment-with-locales.min.js.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 224.8K bytes
    - Click Count (1)
Back to Top