Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testCustomImplementation (0.41 sec)

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

                assertEquals(times[2], info.getLastWriteTime());
            }
        }
    
        @Test
        @DisplayName("Test custom implementation of BasicFileInformation")
        void testCustomImplementation() {
            // Given - Create a custom implementation
            BasicFileInformation customImpl = new BasicFileInformation() {
                @Override
                public int getAttributes() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/RequestWithFileIdTest.java

        }
    
        @Test
        @DisplayName("Should create custom implementation of RequestWithFileId")
        void testCustomImplementation() {
            // Given - custom implementation
            class CustomRequestWithFileId implements RequestWithFileId {
                private byte[] fileId;
                private int setCount = 0;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top