Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_connectionState_initiallyNotConnected (2.33 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

            assertEquals("object.txt", getField(gcsConn, "objectName"));
        }
    
        /**
         * Test that GCS Storage client is initially null before connection.
         */
        public void test_connectionState_initiallyNotConnected() throws Exception {
            URL url = new URL("gcs://mybucket/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

            assertEquals("object.txt", getField(storageConn, "objectName"));
        }
    
        /**
         * Test that MinIO client is initially null before connection.
         */
        public void test_connectionState_initiallyNotConnected() throws Exception {
            URL url = new URL("storage://mybucket/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top