Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/jcifs/smb/FileEntryTest.java

            inOrder.verify(mockEntry).getName();
            inOrder.verify(mockEntry, times(2)).getType();
        }
    
        @Test
        @DisplayName("Mock without interactions reports none")
        void mock_noInteractions() {
            // Arrange/Act: do nothing
            // Assert: verify no interactions
            verifyNoInteractions(mockEntry);
        }
    
        // --- Fake implementation tests (happy path and edge cases) ---
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top