共计 794 个字符,预计需要花费 2 分钟才能阅读完成。
在使用 Mockito 模拟方法抛出异常时,可以使用 Mockito 的 doThrow()
方法来模拟方法抛出异常。下面是一个简单的示例:
假设有一个 UserService 类,其中有一个方法 getUserById(),当传入的 id 为 null 时会抛出 NullPointerException 异常:
public class UserService {public User getUserById(String id) {if (id == null) {throw new NullPointerException("id cannot be null");
}
// 其他逻辑
}
}
现在我们想要使用 Mockito 来模拟 getUserById()方法抛出异常,可以这样做:
import static org.mockito.Mockito.*;
public class UserServiceTest {@Test
public void testGetUserById() {UserService userService = mock(UserService.class);
// 模拟方法抛出异常
doThrow(new NullPointerException("id cannot be null"))
.when(userService)
.getUserById(isNull());
// 调用被测试方法
User result = userService.getUserById(null);
// 断言抛出异常
assertNotNull(result);
}
}
在上面的示例中,我们使用 doThrow()
方法模拟了 getUserById()方法在传入 null 时抛出 NullPointerException 异常。然后我们调用被测试方法并断言是否抛出了异常。
通过这种方法,我们可以很方便地使用 Mockito 来模拟方法抛出异常,从而进行异常处理的单元测试。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2024-03-19