1
voidメソッドの例外をモックしようとすると問題が発生します。上記のコードで JMockitを使用してvoidメソッドの例外を模擬する方法
@Test
public void throwInternalServerException() throws Exception {
new NonStrictExpectations() {{
mockedClassInstance.voidMethod("abc", "def");
result = new ServiceException();
}};
mockMvc.perform(post("/someRestApi/"))
.andExpect(status().isInternalServerError());
は、その成功は、私がのparamsを交換する場合
"ABC" をと
"DEF" 私はthis questionのソリューションを試みたが、
anyString と、それは動作しません。
ライブラリ:jmockitとspring-testを使用しました。