- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testLastModified (0.06 sec)
-
src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java
long result = instance.createTime(); assertEquals(expResult, result); } /** * Test of lastModified method, of class SmbShareInfo. */ @Test void testLastModified() { SmbShareInfo instance = new SmbShareInfo(); long expResult = 0L; long result = instance.lastModified(); assertEquals(expResult, result); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
// Verify assertEquals(expectedCreationTime, fileBothDirectoryInfo.createTime()); } @Test @DisplayName("Test lastModified returns correct last write time") void testLastModified() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = createValidBuffer("file.txt", "FILE~1.TXT", true); long expectedLastWriteTime = System.currentTimeMillis();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileTest.java
doReturn(expectedLength).when(smbFile).length(); // Act & Assert assertEquals(expectedLength, smbFile.length()); } @Test void testLastModified() throws SmbException { // Arrange long expectedTime = System.currentTimeMillis(); doReturn(expectedTime).when(smbFile).lastModified(); // Act & Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.8K bytes - Viewed (0)