Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testEncodeNullRids (5.93 sec)

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

                verify(mockNdrBuffer).enc_ndr_referent(array.rids, 1);
            }
    
            @Test
            @DisplayName("Should encode array with null RIDs")
            void testEncodeNullRids() throws NdrException {
                // Given: Array with null RIDs
                samr.SamrRidWithAttributeArray array = new samr.SamrRidWithAttributeArray();
                array.count = 0;
                array.rids = 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.rids, 1);
            }
    
            @Test
            @DisplayName("Should encode array with null RIDs")
            void testEncodeNullRids() throws NdrException {
                // Given: Array with null RIDs
                samr.SamrRidWithAttributeArray array = new samr.SamrRidWithAttributeArray();
                array.count = 0;
                array.rids = 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