- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 46 for test_values (0.08 seconds)
-
src/test/java/org/codelibs/fess/crawler/util/FieldConfigsTest.java
public void test_empty() { final FieldConfigs fieldConfigs = new FieldConfigs(Collections.emptyMap()); assertTrue(fieldConfigs.getConfig("test").isEmpty()); } @Test public void test_values() { final Map<String, String> params = Maps.of("foo", "bar"); FieldConfigs fieldConfigs = new FieldConfigs(params); assertTrue(fieldConfigs.getConfig("test").isEmpty());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/ChatIntentTest.java
*/ package org.codelibs.fess.llm; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class ChatIntentTest extends UnitFessTestCase { @Test public void test_values() { ChatIntent[] values = ChatIntent.values(); assertEquals(4, values.length); assertEquals(ChatIntent.SEARCH, values[0]); assertEquals(ChatIntent.SUMMARY, values[1]);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class SsoResponseTypeTest extends UnitFessTestCase { @Test public void test_values() { // Test that values() returns all enum constants SsoResponseType[] values = SsoResponseType.values(); assertNotNull(values); assertEquals(2, values.length);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
assertEquals(3, keySet.size()); assertTrue(keySet.contains("key1")); assertTrue(keySet.contains("key2")); assertTrue(keySet.contains("key3")); } @Test public void test_values() { Map<String, Object> parentMap = new HashMap<>(); DocMap docMap = new DocMap(parentMap); docMap.put("key1", "value1"); docMap.put("key2", "value2");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
try { // Test multiple value changes String[] testValues = { "http://localhost:9200", "https://elasticsearch.example.com", "http://127.0.0.1:9201", "https://search.domain.com:443" }; for (String testValue : testValues) { System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, testValue); String result = SystemUtil.getSearchEngineHttpAddress();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
@Test public void test_getTimeAdjustTimeMillis_stringValues() { // Test various string formats String[] testValues = { "0", "1000", "-1000", "999999999", "-999999999", "1", "-1" }; for (String value : testValues) { FessConfig testConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/DefaultCorsHandlerTest.java
@Test public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage @Test public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/service/FessUrlQueueServiceTest.java
@Test public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage @Test public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/util/FessCrawlerConfigTest.java
@Test public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage @Test public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryFileTest.java
@Test public void test_placeholder() { // This test verifies the test class can be instantiated and run String testValue = "test"; assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage @Test public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0)