Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CustomOS (0.07 sec)

  1. src/test/java/jcifs/context/SingletonContextTest.java

            props.setProperty("jcifs.smb.client.nativeOs", "CustomOS");
            props.setProperty("jcifs.smb.client.nativeLanMan", "CustomLanman");
            assertDoesNotThrow(() -> SingletonContext.init(props));
            CIFSContext context = SingletonContext.getInstance();
            assertNotNull(context);
            assertEquals("CustomOS", context.getConfig().getNativeOs());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/BaseConfigurationTest.java

        void testInitDefaultsWithPresetNativeOs() throws CIFSException {
            BaseConfiguration testConfig = new BaseConfiguration(false);
            testConfig.nativeOs = "CustomOS";
    
            testConfig.initDefaults();
    
            assertEquals("CustomOS", testConfig.getNativeOs());
        }
    
        @Test
        @DisplayName("Test initDefaults with various flag combinations")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top