Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSetUidWithBoundaryValues (0.09 sec)

  1. src/test/java/jcifs/internal/CommonServerMessageBlockTest.java

            // When
            messageBlock.setUid(uid);
    
            // Then
            verify(messageBlock).setUid(uid);
        }
    
        @Test
        @DisplayName("Test setUid with boundary values")
        void testSetUidWithBoundaryValues() {
            // Test with various uid values
            int[] uids = { 0, 1, Integer.MAX_VALUE, Integer.MIN_VALUE };
    
            for (int uid : uids) {
                doNothing().when(messageBlock).setUid(uid);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
Back to top