Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testSupportedAlgorithms (0.09 seconds)

  1. src/test/java/jcifs/smb/compression/CompressionNegotiateContextTest.java

            assertEquals(CompressionNegotiateContext.NEGO_CTX_COMPRESSION_TYPE, context.getContextType());
        }
    
        @Test
        @DisplayName("Test supported algorithms")
        public void testSupportedAlgorithms() {
            int[] algorithms = context.getCompressionAlgorithms();
            assertNotNull(algorithms);
            assertEquals(3, algorithms.length);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  2. src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java

            testData = generateTestData(1024);
            largeTestData = generateTestData(8192);
        }
    
        @Test
        @DisplayName("Test supported algorithms")
        public void testSupportedAlgorithms() {
            int[] supported = compressionService.getSupportedAlgorithms();
            assertNotNull(supported);
            assertTrue(supported.length > 0);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 9.1K bytes
    - Click Count (0)
Back to Top