- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for independent (1.03 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
- ✅ Encoding information in TextExtractor errors - ✅ File type context in MS Office errors - ✅ Archive type in archive extractor errors ## Testing Best Practices 1. **Isolation**: Each test is independent and doesn't affect others 2. **Clarity**: Test names clearly describe what is being tested 3. **Coverage**: Both success and failure paths are tested 4. **Edge Cases**: Null, empty, and boundary conditions are covered
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
assertSame(pooled1.getObject(), pooled2.getObject()); // Same wrapped object } /** * Test factory configuration independence */ public void test_factoryConfigurationIndependence() { // Each factory instance has independent configuration assertEquals("testComponent", factory.getComponentName()); assertSame(container, factory.getCrawlerContainer());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 13:07:01 UTC 2025 - 36.7K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
</magic> <!-- The priority is 60, as .webarchive files often contain (X)HTML content. The bplist magic must trump the XHTML magics further within the file. This must also be independent of the internal ordering of patterns within MimeTypes --> <magic priority="60"> <match value="bplist" type="string" offset="0"/> </magic> </mime-type>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (2) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
int bytesRead1 = stream1.read(buffer1); assertEquals(testContent, new String(buffer1, 0, bytesRead1, "UTF-8")); } // Second read - should work independently try (InputStream stream2 = cache.getInputStream()) { byte[] buffer2 = new byte[1024]; int bytesRead2 = stream2.read(buffer2);
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 11.2K bytes - Viewed (0)