Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_server_dfs (0.86 sec)

  1. src/test/java/jcifs/dcerpc/DcerpcHandleTest.java

                this.serverWithDfs = "test_server_dfs";
                this.sessionKey = new byte[] { 1, 2, 3, 4 };
            }
    
            public TestDcerpcHandle(CIFSContext tc, DcerpcBinding binding) {
                super(tc, binding);
                this.localTransportContext = tc;
                this.server = "test_server";
                this.serverWithDfs = "test_server_dfs";
                this.sessionKey = new byte[] { 1, 2, 3, 4 };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            void testGetServerWithDfs() throws Exception {
                DcerpcPipeHandle handle = createMockedDcerpcPipeHandle();
                when(mockSmbResourceLocator.getServerWithDfs()).thenReturn("testServerDfs");
                assertEquals("testServerDfs", handle.getServerWithDfs());
            }
    
            @Test
            @DisplayName("Should return session key successfully")
            void testGetSessionKey() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top