Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testDestroy (0.25 sec)

  1. src/test/java/jcifs/util/SecureCredentialStorageTest.java

                Arrays.fill(decrypted, '\0');
            } finally {
                storage2.close();
            }
    
            Arrays.fill(plaintext, '\0');
        }
    
        @Test
        public void testDestroy() throws Exception {
            char[] plaintext = "DestroyTest".toCharArray();
            byte[] encrypted = storage.encryptCredentials(plaintext);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/http/NtlmHttpFilterTest.java

            when(filterConfig.getInitParameter(anyString())).thenAnswer(invocation -> initParams.get(invocation.getArgument(0)));
    
            assertDoesNotThrow(() -> filter.init(filterConfig));
        }
    
        @Test
        void testDestroy() {
            // Test that destroy method executes without errors
            assertDoesNotThrow(() -> filter.destroy());
        }
    
        @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top