Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for testConstructor (1.29 sec)

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

            runner.refresh();
            suggester = Suggester.builder().build(runner.client(), "AnalyzerNormalizerTest");
            suggester.createIndexIfNothing();
        }
    
        @Test
        public void test_constructor() throws Exception {
            AnalyzerNormalizer normalizer = new AnalyzerNormalizer(runner.client(), suggester.settings());
            assertNotNull(normalizer);
        }
    
        @Test
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/normalizer/NormalizerChainTest.java

    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertNotNull;
    
    import org.junit.Test;
    
    public class NormalizerChainTest {
    
        @Test
        public void test_constructor() throws Exception {
            NormalizerChain chain = new NormalizerChain();
            assertNotNull(chain);
        }
    
        @Test
        public void test_singleNormalizer() throws Exception {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResultTest.java

    import static org.junit.Assert.assertNotNull;
    import static org.junit.Assert.assertTrue;
    
    import org.junit.Test;
    
    public class SuggestWriterResultTest {
    
        @Test
        public void test_constructor() throws Exception {
            SuggestWriterResult result = new SuggestWriterResult();
    
            assertNotNull(result);
            assertFalse(result.hasFailure());
            assertNotNull(result.getFailures());
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java

    import org.codelibs.fess.suggest.constants.SuggestConstants;
    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.junit.Test;
    
    public class PopularWordsResponseTest {
    
        @Test
        public void test_constructor() throws Exception {
            List<String> words = new ArrayList<>();
            words.add("word1");
            words.add("word2");
    
            List<SuggestItem> items = new ArrayList<>();
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java

    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertNotNull;
    
    import org.junit.Test;
    
    public class HankakuKanaToZenkakuKanaTest {
    
        @Test
        public void test_constructor() throws Exception {
            HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana();
            assertNotNull(normalizer);
        }
    
        @Test
        public void test_basicKatakana() throws Exception {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * Test class for {@link NullResponseProcessor}.
     */
    public class NullResponseProcessorTest extends PlainTestCase {
    
        public void test_constructor() {
            // Test constructor
            NullResponseProcessor processor = new NullResponseProcessor();
            assertNotNull(processor);
        }
    
        public void test_implementsResponseProcessor() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java

            PopularWordsRequest request = new PopularWordsRequest();
            request.setSeed("test-seed");
    
            assertNotNull(request.buildRescore());
        }
    
        @Test
        public void test_constructor() throws Exception {
            PopularWordsRequest request = new PopularWordsRequest();
            assertNotNull(request);
        }
    
        private void indexQueryItems() throws Exception {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestResponseTest.java

    import org.codelibs.fess.suggest.constants.SuggestConstants;
    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.junit.Test;
    
    public class SuggestResponseTest {
    
        @Test
        public void test_constructor() throws Exception {
            List<String> words = new ArrayList<>();
            words.add("test");
            words.add("example");
    
            List<SuggestItem> items = new ArrayList<>();
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java

        @Mock
        private SitemapsHelper sitemapsHelper;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            MockitoAnnotations.openMocks(this);
        }
    
        public void test_constructor() {
            // Test constructor
            SitemapsResponseProcessor proc = new SitemapsResponseProcessor();
            assertNotNull(proc);
        }
    
        public void test_implementsResponseProcessor() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriterTest.java

            SuggestItem[] mergedItems = writer.mergeItems(new SuggestItem[] { item1, item2 });
    
            assertNotNull(mergedItems);
            assertEquals(2, mergedItems.length);
        }
    
        @Test
        public void test_constructor() throws Exception {
            SuggestIndexWriter newWriter = new SuggestIndexWriter();
            assertNotNull(newWriter);
        }
    
        @Test
        public void test_writeItemsUsesSettingsTimeout() throws Exception {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 18.2K bytes
    - Viewed (0)
Back to top