Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testGetOutputStream (0.47 sec)

  1. src/test/java/jcifs/SmbPipeHandleTest.java

        }
    
        /**
         * Tests that the getter for the output stream returns the correct stream.
         * @throws CIFSException if an error occurs while getting the stream.
         */
        @Test
        public void testGetOutputStream() throws CIFSException {
            assertEquals(mockOutputStream, smbPipeHandle.getOutput(), "getOutput() should return the correct output stream.");
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbFileTest.java

                        SmbConstants.ATTR_NORMAL, // 128
                        0);
            }
    
            @Test
            void testGetOutputStream() throws IOException {
                // Act
                var outputStream = smbFile.getOutputStream();
    
                // Assert
                assertNotNull(outputStream);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.8K bytes
    - Viewed (0)
Back to top