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.
我正在尝试使用 Mockito 测试在泽西岛创建的资源,但我似乎碰壁了。我的部分资源涉及返回一个位置标头——它又由运行时注入的 UriInfo 组成。但是,当使用 JUnit4 进行简单的单元测试时,没有设置 uriInfo - 有什么办法解决这个问题吗?
提前致谢!
没有 jersey runtime env就没有@Context自动注入。否则,您可以使用@Mockand@InjectMocks注入模拟对象。
@Context
@Mock
@InjectMocks