- Sort Score
- Result 10 results
- Languages All
Results 41 - 44 of 44 for thenThrow (0.04 sec)
- 
				
				src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.javavoid testEncodeWithException() { CreateContextRequest request = mock(CreateContextRequest.class); byte[] buffer = new byte[100]; when(request.encode(any(byte[].class), anyInt())).thenThrow(new RuntimeException("Test error")); assertThrows(RuntimeException.class, () -> request.encode(buffer, 0)); } } @Nested @DisplayName("Test Implementation Tests") Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/AllocInfoTest.java// Given byte[] buffer = new byte[100]; when(mockAllocInfo.decode(any(byte[].class), anyInt(), anyInt())) .thenThrow(new jcifs.internal.SMBProtocolDecodingException("Test error")); // When & Then assertThrows(jcifs.internal.SMBProtocolDecodingException.class, () -> mockAllocInfo.decode(buffer, 0, buffer.length));Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.javawhen(mockContext.getConfig()).thenReturn(mockConfig); when(mockConfig.getLanManCompatibility()).thenReturn(3); when(mockTransport.getServerEncryptionKey()).thenThrow(new RuntimeException("Test exception")); assertThrows(SmbException.class, () -> new SMB1SigningDigest(mockTransport, mockAuth)); } @Test @DisplayName("Test update method with valid data") Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/netbios/NbtAddressTest.javanbtAddress.calledName = NbtAddress.SMBSERVER_NAME; // Manually set for this test case when(mockNameServiceClient.getNodeStatus(nbtAddress)).thenThrow(new UnknownHostException()); assertNull(nbtAddress.nextCalledName(mockContext)); verify(mockNameServiceClient).getNodeStatus(nbtAddress); } @TestRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0)