- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_emptyStrings (0.12 sec)
-
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) -
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) -
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) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
assertEquals(65535, referral.getRFlags()); assertEquals(65535, referral.getProximity()); assertEquals(65535, referral.getTtl()); } @Test public void testEmptyStrings() { ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN); bb.putShort((short) 3); bb.putShort((short) 34); bb.putShort((short) 1);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0)