Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用两个异常映射器,responseexceptionmapper 和 exceptionmapper。现在我需要从这些映射器中获得代码覆盖率。
有什么例子吗?
Thouse只是普通的课程,
我可以提供一个示例,但对于单元测试,您只需将映射器实例化为普通类并调用提供异常的“toResponse”方法以获取响应,检查是否满足您的要求。
对于集成测试,您只需使用 RestAssured 调用您的服务并验证响应是否包含 ExceptionMapper 提供的状态和正文
映射器内部正在开发什么样的逻辑?