- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 100 for test_string (0.53 sec)
-
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
// Test with simple ID searchRenderData.setQueryId("query-001"); assertEquals("query-001", searchRenderData.getQueryId()); } public void test_toString() { // Test with default values String defaultString = searchRenderData.toString(); assertNotNull(defaultString); assertTrue(defaultString.startsWith("SearchRenderData ["));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java
assertEquals(Ordering.natural(), copy.keyComparator()); assertEquals(Ordering.natural(), copy.valueComparator()); assertEquals(Ordering.natural(), copy.get("google").comparator()); } public void testToString() { Multimap<String, Integer> multimap = create(); multimap.put("foo", 3); multimap.put("bar", 1); multimap.putAll("foo", asList(-1, 2, 4)); multimap.putAll("bar", asList(2, 3));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
CharMappingItem item2 = new CharMappingItem(2L, inputs2, "output"); assertTrue(item1.equals(item2)); } public void test_toString() { String[] inputs = { "a", "b" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); item.setNewInputs(new String[] { "x", "y" }); item.setNewOutput("newOutput");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertEquals("new2", stopwordsFile.stopwordsItemList.get(1).getInput()); assertEquals("new3", stopwordsFile.stopwordsItemList.get(2).getInput()); } // Test toString method public void test_toString() { loadTestData(); String result = stopwordsFile.toString(); assertTrue(result.contains("StopwordsFile")); assertTrue(result.contains("path=" + testFile.getAbsolutePath()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
assertEquals("test", labels[0].getValue()); assertNotNull(labels[0].getIncludedPaths()); assertNotNull(labels[0].getExcludedPaths()); } public void test_toString() { GsaConfigParser parser = new GsaConfigParser(); String result = parser.toString(); assertTrue(result.contains("GsaConfigParser")); assertTrue(result.contains("labelList"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals(2, list.size()); assertEquals("updated1", list.get(0).getInput()); assertEquals("updated2", list.get(1).getInput()); } public void test_toString() { protwordsFile.reload(null); String result = protwordsFile.toString(); assertTrue(result.contains("ProtwordsFile")); assertTrue(result.contains("path=" + testFile.getAbsolutePath()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(centralTz); assertEquals(TimeZone.getDefault(), centralTz); } // Test toString method public void test_toString() { String result = provider.toString(); assertNotNull(result); assertTrue(result.length() > 0); // Check that it contains class name or relevant info
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
this.badLength = badLength; } @Override public long length() { return badLength; } private static final long serialVersionUID = 0; } public void testToString() throws IOException { File asciiFile = getTestFile("ascii.txt"); File i18nFile = getTestFile("i18n.txt"); assertEquals(ASCII, Files.toString(asciiFile, US_ASCII));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
Map<String, Object> doc = result.getDocumentList().get(i); assertEquals(String.valueOf(i), doc.get("id")); assertEquals(i, doc.get("index")); } } public void test_toString() { // Test toString method Map<String, Object> doc = new HashMap<>(); doc.put("key", "value"); List<Map<String, Object>> documentList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
// Test generic type safety of getObject method // Since we're in test environment without request context, this will return null String stringResult = WebApiUtil.getObject("testString"); assertNull("Should return null in test environment", stringResult); Integer intResult = WebApiUtil.getObject("testInteger"); assertNull("Should return null in test environment", intResult);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K bytes - Viewed (0)