Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for INVALID_VERSION (0.1 seconds)

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

  1. src/test/java/jcifs/internal/witness/WitnessEnumTest.java

                WitnessServiceType.valueOf("INVALID_TYPE");
            });
    
            assertThrows(IllegalArgumentException.class, () -> {
                WitnessVersion.valueOf("INVALID_VERSION");
            });
    
            assertThrows(IllegalArgumentException.class, () -> {
                WitnessEventType.valueOf("INVALID_EVENT");
            });
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 09:06:40 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  2. src/test/java/jcifs/config/PropertyConfigurationTest.java

            // Invalid dialect version should throw IllegalArgumentException
            Properties dialectProps = new Properties();
            dialectProps.setProperty("jcifs.smb.client.minVersion", "INVALID_VERSION");
            assertThrows(IllegalArgumentException.class, () -> {
                new PropertyConfiguration(dialectProps);
            });
        }
    
        @Test
        @DisplayName("Should handle property inheritance")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.3K bytes
    - Click Count (0)
Back to Top