Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Smb2FlushResponse (0.96 sec)

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

        private Configuration mockConfig;
    
        private Smb2FlushResponse response;
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
            response = new Smb2FlushResponse(mockConfig);
        }
    
        @Test
        @DisplayName("Constructor should initialize with Configuration")
        void testConstructor() {
            // Given & When
            Smb2FlushResponse flushResponse = new Smb2FlushResponse(mockConfig);
    
    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/smb2/io/Smb2FlushRequestTest.java

            assertEquals(null, storedFileId);
        }
    
        @Test
        @DisplayName("createResponse should return Smb2FlushResponse with correct config")
        void testCreateResponse() throws Exception {
            Smb2FlushResponse response = request.createResponse(mockContext, request);
    
            assertNotNull(response);
    
            // Verify response has correct config
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top