Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_instanceCreation (0.26 sec)

  1. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

                            value.startsWith("{labels."));
                }
            }
        }
    
        /**
         * Test instance creation
         */
        public void test_instanceCreation() {
            FessLabels labels = new FessLabels();
            assertNotNull(labels);
            assertTrue(labels instanceof org.lastaflute.core.message.UserMessages);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            assertEquals("Field naming should be CAMEL_TO_LOWER_SNAKE", JsonFieldNaming.CAMEL_TO_LOWER_SNAKE, fieldNamingOpt.get());
        }
    
        public void test_instanceCreation() {
            // Test that multiple instances can be created independently
            FessJsonResourceProvider provider1 = new FessJsonResourceProvider();
            FessJsonResourceProvider provider2 = new FessJsonResourceProvider();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top