Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Aa (0.12 sec)

  1. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertTrue(StringUtil.endsWithIgnoreCase("aaa_hoge", "HOge"));
            assertFalse(StringUtil.endsWithIgnoreCase("setHogeaa", "Aaa"));
            assertFalse(StringUtil.endsWithIgnoreCase("aa", "Aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testStartsWithIgnoreCase() throws Exception {
            assertTrue(StringUtil.startsWithIgnoreCase("isHoge", "is"));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("\"aaa bbb\" \"ccc\"", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc" })));
            assertEquals("\"a\\\"aa\"", getAsQuery(Collections.singletonMap(k, new String[] { "a\"aa" })));
            assertEquals("\"aaa bbb\"", getAsQuery("111", Collections.singletonMap(k, new String[] { "aaa bbb" })));
        }
    
        public void test_conditions_oq() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top