Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EndOfFileInformation (0.09 sec)

  1. src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java

            assertNotNull(str1);
            assertTrue(str1.startsWith("EndOfFileInformation["));
            assertTrue(str1.contains("endOfFile="));
            assertTrue(str1.endsWith("]"));
    
            // Test with specific value
            FileEndOfFileInformation info = new FileEndOfFileInformation(12345L);
            String str2 = info.toString();
            assertEquals("EndOfFileInformation[endOfFile=12345]", str2);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FileInformationTest.java

            // Test toString
            String str = fileInfoWithEof.toString();
            assertNotNull(str);
            assertTrue(str.contains("EndOfFileInformation"));
            assertTrue(str.contains("1024"));
        }
    
        /**
         * Test FileEndOfFileInformation encode/decode round trip
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top