我试图为“IllegalStateException for getResultList of JAP Query”编写测试。我正在使用 spring 来处理事务。任何人都可以帮我制作这个例外吗?
示例代码
@Test (expected = IllegalStateException.class)
public void shouldThroughIllegalStateException() throws Exception {
List<SomeEntity> someEntitys= someDao.getAlldata();
}
问候拉吉布