Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pipeType_and_getPipe (0.3 sec)

  1. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

                OtherPipeHandle result = handle.unwrap(OtherPipeHandle.class);
            });
        }
    
        @Test
        @DisplayName("getPipeType and getPipe delegate to SmbNamedPipe")
        void pipeType_and_getPipe() {
            when(pipe.getPipeType()).thenReturn(12345);
            SmbPipeHandleImpl handle = new SmbPipeHandleImpl(pipe);
            assertEquals(12345, handle.getPipeType());
            assertSame(pipe, handle.getPipe());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top