↓以下のようなやり方でできると思います。
`
@Mocked
List<String> mockList;
@Test(expected=IllegalArgumentException.class)
public void throwExceptionTest() {
new NonStrictExpectations() {{
mockList.get(0); result = "正常系";
mockList.get(1); result = new IllegalArgumentException();
}};
//例外をスロー
mockList.get(1);
}
`
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。