Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for emptyName (0.04 seconds)

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

  1. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

            }
    
            @Test
            @DisplayName("Should handle empty name array")
            void testEmptyNameArray() {
                byte[] emptyName = new byte[0];
                TestCreateContextResponse response = new TestCreateContextResponse(emptyName);
    
                assertNotNull(response.getName());
                assertEquals(0, response.getName().length);
            }
    
            @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  2. src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java

            // but shows that APPLICATION tag is properly recognized
            DERSequence emptyBase = new DERSequence(new ASN1EncodableVector());
            DERTaggedObject appTag = new DERTaggedObject(false, BERTags.APPLICATION, 3, emptyBase);
            v.add(appTag);
            ASN1Sequence seq = new DERSequence(v);
    
            // Act + Assert
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10.3K bytes
    - Click Count (0)
Back to Top