Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_close (0.07 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                assertEquals(CrawlerStatus.DONE, crawler.crawlerContext.getStatus());
                dataService.delete(sessionId);
            } finally {
                server.stop();
            }
        }
    
        public void test_close() throws Exception {
            final Crawler testCrawler = container.getComponent("crawler");
    
            // close should not throw exception
            testCrawler.close();
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Nov 11 13:40:14 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/normalizer/NormalizerChainTest.java

            chain.add((text, field, langs) -> text.replace(" ", "_"));
    
            String result = chain.normalize("  TEST CASE  ", "field");
    
            assertEquals("test_case", result);
        }
    
        @Test
        public void test_nullInput() throws Exception {
            NormalizerChain chain = new NormalizerChain();
            chain.add(new FullWidthToHalfWidthAlphabetNormalizer());
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top