Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testNullName (5.61 sec)

  1. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

            void testNameStorage() {
                assertArrayEquals(testName, testRequest.getName());
            }
    
            @Test
            @DisplayName("Should handle null name")
            void testNullName() {
                TestCreateContextRequest nullNameRequest = new TestCreateContextRequest(null);
                assertNull(nullNameRequest.getName());
            }
    
            @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

            void testNameStorage() {
                assertArrayEquals(testName, testResponse.getName());
            }
    
            @Test
            @DisplayName("Should handle null name")
            void testNullName() {
                TestCreateContextResponse nullNameResponse = new TestCreateContextResponse(null);
                assertEquals(null, nullNameResponse.getName());
            }
    
            @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top