Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testGetLastWriteTime (0.15 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java

            assertEquals(serverTimeZoneOffset, response.getCreateTime());
        }
    
        /**
         * Test of getLastWriteTime method, of class SmbComQueryInformationResponse.
         */
        @Test
        public void testGetLastWriteTime() {
            // Initially, lastWriteTime is 0, so it should return just the offset.
            assertEquals(serverTimeZoneOffset, response.getLastWriteTime());
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java

        void testGetCreateTime() {
            assertEquals(0L, fileStandardInfo.getCreateTime());
        }
    
        @Test
        @DisplayName("Test getLastWriteTime returns 0")
        void testGetLastWriteTime() {
            assertEquals(0L, fileStandardInfo.getLastWriteTime());
        }
    
        @Test
        @DisplayName("Test getLastAccessTime returns 0")
        void testGetLastAccessTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

            void testGetLastAccessTime() {
                assertEquals(0, response.getLastAccessTime());
            }
    
            @Test
            @DisplayName("getLastWriteTime should return initial value of 0")
            void testGetLastWriteTime() {
                assertEquals(0, response.getLastWriteTime());
            }
    
            @Test
            @DisplayName("getChangeTime should return initial value of 0")
            void testGetChangeTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top