Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testEncodeNullEntries (0.08 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                verify(mockNdrBuffer).enc_ndr_referent(array.entries, 1);
            }
    
            @Test
            @DisplayName("Should encode array with null entries")
            void testEncodeNullEntries() throws NdrException {
                // Given: SAM array with null entries
                samr.SamrSamArray array = new samr.SamrSamArray();
                array.count = 0;
                array.entries = null;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                verify(mockNdrBuffer).enc_ndr_referent(array.entries, 1);
            }
    
            @Test
            @DisplayName("Should encode array with null entries")
            void testEncodeNullEntries() throws NdrException {
                // Given: SAM array with null entries
                samr.SamrSamArray array = new samr.SamrSamArray();
                array.count = 0;
                array.entries = null;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
Back to top