Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for test_normalize (0.06 seconds)

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

        }
    
        @AfterClass
        public static void afterClass() throws Exception {
            runner.close();
            runner.clean();
        }
    
        @Test
        public void test_normalize() throws Exception {
            Normalizer normalizer = SuggestUtil.createDefaultNormalizer(runner.client(), suggester.settings());
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Nov 01 13:29:47 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/core/text/DecimalFormatUtilTest.java

    import junit.framework.TestCase;
    
    /**
     * @author higa
     *
     */
    public class DecimalFormatUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testNormalize() throws Exception {
            assertEquals("1", "1000.00", DecimalFormatUtil.normalize("1,000.00", Locale.JAPAN));
            assertEquals("2", "1000", DecimalFormatUtil.normalize("1,000", Locale.JAPAN));
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestQueryBuildingTest.java

         */
        private static class TestableSuggestRequest extends SuggestRequest {
            private String testQuery = "test";
            private ReadingConverter testReadingConverter;
            private Normalizer testNormalizer;
            private float testPrefixMatchWeight = 2.0f;
            private boolean testMatchWordFirst = true;
    
            @Override
            public void setReadingConverter(ReadingConverter readingConverter) {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 19.8K bytes
    - Click Count (0)
Back to Top