Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_constructor_isPrivate (0.82 sec)

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

                } else {
                    System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
                }
            }
        }
    
        public void test_constructor_isPrivate() {
            // Verify that SystemUtil has a private constructor (utility class pattern)
            try {
                Constructor<SystemUtil> constructor = SystemUtil.class.getDeclaredConstructor();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            try {
                WebApiUtil.validate();
            } catch (WebApiException e) {
                fail("validate should not throw exception when no error is set");
            }
        }
    
        public void test_constructor_isPrivate() {
            // Verify that WebApiUtil has a private constructor (utility class pattern)
            try {
                Constructor<WebApiUtil> constructor = WebApiUtil.class.getDeclaredConstructor();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            parsed = KuromojiCSVUtil.parse(escaped);
            assertEquals(1, parsed.length);
            assertEquals("with \"\"quotes\"\"", parsed[0]); // NOT the original - this is the quirk
        }
    
        public void test_constructor_isPrivate() {
            // Verify that KuromojiCSVUtil has a private constructor (utility class pattern)
            try {
                Constructor<KuromojiCSVUtil> constructor = KuromojiCSVUtil.class.getDeclaredConstructor();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top