- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testGetCreateTime (0.87 sec)
-
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
void testGetAttributes() { assertEquals(0, fileStandardInfo.getAttributes()); } @Test @DisplayName("Test getCreateTime returns 0") void testGetCreateTime() { assertEquals(0L, fileStandardInfo.getCreateTime()); } @Test @DisplayName("Test getLastWriteTime returns 0") void testGetLastWriteTime() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
assertEquals(0, response.getAttributes()); } /** * Test of getCreateTime method, of class SmbComQueryInformationResponse. */ @Test public void testGetCreateTime() { // Initially, lastWriteTime is 0, so createTime should be just the offset. assertEquals(serverTimeZoneOffset, response.getCreateTime()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
void testGetCreationTime() { assertEquals(0, response.getCreationTime()); } @Test @DisplayName("getCreateTime should return same as getCreationTime") void testGetCreateTime() { assertEquals(response.getCreationTime(), response.getCreateTime()); } @Test @DisplayName("getLastAccessTime should return initial value of 0")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0)