- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for testCase (2.44 sec)
-
src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.normalizer; import junit.framework.TestCase; public class ICUNormalizerTest extends TestCase { public void test_FullwidthHalfwidth() { ICUNormalizer normalizer = new ICUNormalizer("Fullwidth-Halfwidth"); assertEquals("abcd", normalizer.normalize("abcd", null));Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterBuilderTest.java
import org.codelibs.fess.suggest.settings.SuggestSettings; import org.codelibs.opensearch.runner.OpenSearchRunner; import org.opensearch.core.common.Strings; import junit.framework.TestCase; public class SuggesterBuilderTest extends TestCase { OpenSearchRunner runner; @Override public void setUp() throws Exception { runner = new OpenSearchRunner(); runner.onBuild((number, settingsBuilder) -> {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sat Nov 01 13:29:47 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverterTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import java.util.List; import junit.framework.TestCase; public class KatakanaToAlphabetConverterTest extends TestCase { private KatakanaToAlphabetConverter converter; @Override protected void setUp() throws Exception { super.setUp();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.misc; import junit.framework.TestCase; /** * @author higa * */ public class Base64UtilTest extends TestCase { private static final String ORIGINAL = "how now brown cow\r\n"; private static final byte[] BINARY_DATA = ORIGINAL.getBytes();Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/SerializeUtilTest.java
import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.codelibs.core.exception.IORuntimeException; import junit.framework.TestCase; /** * @author higa * */ public class SerializeUtilTest extends TestCase { /** * @throws Exception */ public void testSerialize() throws Exception { final String[] a = new String[] { "1", "2" };Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
return server; } public void test_doGet_root_dir() throws FtpException { FtpServer server = null; try { String username = "testuser"; String password = "testpass"; server = startFtpServer(FTP_PORT, username, password); Map<String, Object> params = new HashMap<String, Object>(); FtpAuthentication auth = new FtpAuthentication();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 21.5K bytes - Viewed (0) -
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("robotsTxtHelper", RobotsTxtHelper.class); robotsTxtHelper = container.getComponent("robotsTxtHelper"); } public void testParse() { RobotsTxt robotsTxt; final InputStream in = RobotsTxtHelperTest.class.getResourceAsStream("robots.txt"); try { robotsTxt = robotsTxtHelper.parse(in); } finally {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0)