Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testInheritedProperties (0.2 sec)

  1. src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java

                assertEquals(0, written);
                assertEquals(4, read);
            }
    
            @Test
            @DisplayName("Should inherit ServerMessageBlock2Response properties")
            void testInheritedProperties() {
                // Verify that the response inherits from ServerMessageBlock2Response
                assertTrue(response instanceof jcifs.internal.smb2.ServerMessageBlock2Response);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            assertTrue(result.contains("["));
            assertTrue(result.contains("]"));
        }
    
        @Test
        @DisplayName("Test inherited properties from SmbComTransactionResponse")
        void testInheritedProperties() {
            // Test that inherited properties are accessible
    
            // Test dataCount property - using public method
            response.setDataCount(100);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                assertEquals(0, written);
                assertEquals(4, read);
            }
    
            @Test
            @DisplayName("Should inherit ServerMessageBlock2Response properties")
            void testInheritedProperties() {
                // Verify that the response inherits from ServerMessageBlock2Response
                assertTrue(response instanceof jcifs.internal.smb2.ServerMessageBlock2Response);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
Back to top