- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for testGetFileName (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
notifyInfo.decode(buffer, 0, buffer.length); assertEquals(expectedAction, notifyInfo.getAction()); } @Test @DisplayName("Test getFileName returns correct value") void testGetFileName() throws SMBProtocolDecodingException { String expectedFileName = "important_document.xlsx"; byte[] buffer = createValidNotificationBuffer(expectedFileName, FileNotifyInformation.FILE_ACTION_ADDED);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.1K bytes - Click Count (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
verify(mockFileNotifyInfo, times(1)).getAction(); } @Test @DisplayName("Test getFileName method with mock") void testGetFileName() { // Setup mock behavior String expectedFileName = "test-file.txt"; when(mockFileNotifyInfo.getFileName()).thenReturn(expectedFileName); // Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
// Verify assertEquals(expectedFileIndex, fileBothDirectoryInfo.getFileIndex()); } @Test @DisplayName("Test getFilename returns correct filename") void testGetFilename() throws SMBProtocolDecodingException { // Prepare test data String expectedFilename = "longfilename.docx"; byte[] buffer = createValidBuffer(expectedFilename, "LONGFI~1.DOC", true);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
assertArrayEquals(testFileId, response.getFileId()); } @Test @DisplayName("getFileName should return the file name passed in constructor") void testGetFileName() { assertEquals(testFileName, response.getFileName()); } } @Nested @DisplayName("writeBytesWireFormat Tests") class WriteBytesWireFormatTests { @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 26.9K bytes - Click Count (0)