- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testConverter (0.05 sec)
-
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
import org.junit.Test; public class ReadingConverterTest { private ReadingConverter converter; private TestReadingConverter testConverter; @Before public void setUp() { testConverter = new TestReadingConverter(); converter = testConverter; } @Test public void testGetMaxReadingNum() { // Test default max reading num
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
} @Test public void testConstructor() { // Test constructor initialization AnalyzerConverter testConverter = new AnalyzerConverter(client, settings); assertNotNull(testConverter); } @Test public void testInit() throws IOException { // Test init method (should do nothing) converter.init();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ConverterTest.java
private static final ImmutableList<String> STRINGS = ImmutableList.of("123", "456"); private static final ImmutableList<Long> LONGS = ImmutableList.of(123L, 456L); public void testConverter() { assertEquals(LONG_VAL, STR_TO_LONG.convert(STR_VAL)); assertEquals(STR_VAL, STR_TO_LONG.reverse().convert(LONG_VAL)); Iterable<Long> convertedValues = STR_TO_LONG.convertAll(STRINGS);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.2K bytes - Viewed (0)