Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_s3Type (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/storage/StorageTypeTest.java

        public void test_enumValues() {
            final StorageType[] types = StorageType.values();
            assertNotNull(types);
            assertEquals(3, types.length);
        }
    
        public void test_s3Type() {
            assertEquals(StorageType.S3, StorageType.valueOf("S3"));
        }
    
        public void test_gcsType() {
            assertEquals(StorageType.GCS, StorageType.valueOf("GCS"));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 1.8K bytes
    - Click Count (0)
Back to Top