- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for test_protocol (0.12 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /** * Test that the gcs protocol is correctly recognized. */ public void test_protocol() throws Exception { URL url = new URL("gcs://bucket/object"); assertEquals("gcs", url.getProtocol()); } /** * Test URL parsing with bucket and object path. */
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 14.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /** * Test that the storage protocol is correctly recognized. */ public void test_protocol() throws Exception { URL url = new URL("storage://bucket/object"); assertEquals("storage", url.getProtocol()); } /** * Test URL parsing with bucket and object path. */
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 14.4K bytes - Click Count (0)