- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for actualData (0.04 seconds)
-
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java
int result = response.readDataWireFormat(buffer, offset, testData.length); assertEquals(testData.length, result); byte[] actualData = new byte[testData.length]; System.arraycopy(outputBuffer, 0, actualData, 0, testData.length); assertArrayEquals(testData, actualData); } @Test void testReadDataWireFormatNullOutputBuffer() { // Test behavior when outputBuffer is null (edge case)
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/HandlerTest.java
String actualPath = rel.getPath(); assertNotNull(actualPath, "Path should not be null"); // Based on the test output, the actual path is "/bar" when parsing relative spec "foo/bar" // This happens because the URL class parses "foo" as the host and "/bar" as the path assertEquals("/bar", actualPath, "Path should be /bar after URL parsing");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.8K bytes - Click Count (0)