Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testMaximumSizeArrays (0.11 sec)

  1. src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java

            }
        }
    
        @Nested
        @DisplayName("Edge Cases and Error Conditions")
        class EdgeCasesTests {
    
            @Test
            @DisplayName("Should handle maximum size arrays")
            void testMaximumSizeArrays() {
                // Test with reasonably large arrays
                int[] largeCiphers = new int[100];
                for (int i = 0; i < 100; i++) {
                    largeCiphers[i] = i;
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java

            }
        }
    
        @Nested
        @DisplayName("Edge Cases and Error Handling")
        class EdgeCasesTest {
    
            @Test
            @DisplayName("Should handle maximum size arrays")
            void testMaximumSizeArrays() throws SMBProtocolDecodingException {
                // Arrange
                int[] largeHashAlgos = new int[100];
                Arrays.fill(largeHashAlgos, PreauthIntegrityNegotiateContext.HASH_ALGO_SHA512);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top