Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testConfigurationPassedToParent (0.95 sec)

  1. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

            // Test reset behavior
            response.reset();
            assertTrue(response.hasMoreElements());
        }
    
        @Test
        @DisplayName("Verify Configuration is passed to parent")
        void testConfigurationPassedToParent() {
            // Arrange
            Configuration testConfig = mock(Configuration.class);
    
            // Act
            TransWaitNamedPipeResponse testResponse = new TransWaitNamedPipeResponse(testConfig);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java

            // Test reset behavior
            response.reset();
            assertTrue(response.hasMoreElements());
        }
    
        @Test
        @DisplayName("Verify Configuration is passed to parent")
        void testConfigurationPassedToParent() {
            // Arrange
            Configuration testConfig = mock(Configuration.class);
    
            // Act
            TransPeekNamedPipeResponse testResponse = new TransPeekNamedPipeResponse(testConfig);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top