- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for testConstructor (1.1 sec)
-
src/test/java/org/codelibs/curl/CurlResponseTest.java
import org.junit.Test; /** * Test class for CurlResponse. * Tests response handling, header operations, and content access. */ public class CurlResponseTest { @Test public void testConstructor() { CurlResponse response = new CurlResponse(); assertNotNull(response); } @Test public void testHttpStatusCode() { CurlResponse response = new CurlResponse();Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
import org.junit.Test; /** * Test class for CurlRequest. * Tests the fluent API, parameter handling, and request configuration. */ public class CurlRequestTest { @Test public void testConstructor() { String url = "https://example.com"; CurlRequest request = new CurlRequest(Method.GET, url); assertEquals(Method.GET, request.method()); assertEquals("UTF-8", request.encoding());Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizerTest.java
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import org.junit.Test; public class FullWidthToHalfWidthAlphabetNormalizerTest { @Test public void test_constructor() throws Exception { FullWidthToHalfWidthAlphabetNormalizer normalizer = new FullWidthToHalfWidthAlphabetNormalizer(); assertNotNull(normalizer); } @TestRegistered: 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/index/contents/querylog/QueryLogTest.java
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import org.junit.Test; public class QueryLogTest { @Test public void test_constructor() throws Exception { QueryLog queryLog = new QueryLog("test query", "test filter"); assertNotNull(queryLog); assertEquals("test query", queryLog.getQueryString());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/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) -
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) -
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) -
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) -
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) -
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)