Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ShareType (0.05 seconds)

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

  1. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                        Smb2TreeConnectResponse.SMB2_SHARE_TYPE_PRINT };
    
                for (byte shareType : shareTypes) {
                    setPrivateField(response, "shareType", shareType);
                    assertEquals(shareType, response.getShareType(), "Should handle share type: " + shareType);
                }
            }
    
            @Test
            @DisplayName("Should handle combined flags correctly")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java

        @Test
        @DisplayName("Test readDataWireFormat with single share")
        void testReadDataWireFormatSingleShare() throws Exception {
            // Prepare test data
            String shareName = "SHARE1";
            int shareType = 0x00000000; // Disk share
            String remark = "Test share";
    
            // Calculate buffer size
            int shareNameSize = 14; // 13 bytes + null terminator (fixed field)
            int typeSize = 2;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.2K bytes
    - Click Count (0)
Back to Top