Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for test_emptyString (0.06 sec)

  1. src/test/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizerTest.java

            String result = normalizer.normalize("AbCdEf", "field");
    
            assertEquals("AbCdEf", result);
        }
    
        @Test
        public void test_emptyString() throws Exception {
            FullWidthToHalfWidthAlphabetNormalizer normalizer = new FullWidthToHalfWidthAlphabetNormalizer();
    
            String result = normalizer.normalize("", "field");
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java

            String result = normalizer.normalize("アイウエオガギパピ", "field");
    
            assertEquals("アイウエオガギパピ", result);
        }
    
        @Test
        public void test_emptyString() throws Exception {
            HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana();
    
            String result = normalizer.normalize("", "field");
    
            assertEquals("", result);
        }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogTest.java

            QueryLog queryLog = new QueryLog("query", "field:value");
    
            assertEquals("field:value", queryLog.getFilterQueryString());
        }
    
        @Test
        public void test_emptyStrings() throws Exception {
            QueryLog queryLog = new QueryLog("", "");
    
            assertEquals("", queryLog.getQueryString());
            assertEquals("", queryLog.getFilterQueryString());
        }
    
        @Test
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java

        }
    
        /**
         * Test with an empty string for both constructors.
         */
        @Test
        void testEmptyString() {
            String emptyString = "";
            AvTargetName avTargetNameFromString = new AvTargetName(emptyString);
            assertEquals(emptyString, avTargetNameFromString.getTargetName(),
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/crypto/CachedCipherTest.java

            assertThat(cipher1.decryptText(encrypted1), is(original));
            assertThat(cipher2.decryptText(encrypted2), is(original));
        }
    
        @Test
        public void testEmptyString() {
            final CachedCipher cipher = new CachedCipher();
            cipher.setKey("mySecretKey");
    
            final String original = "";
            final String encrypted = cipher.encryptText(original);
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top