我试过测试下面的类,但是没有成功。
@PersistenceContext
private EntityManager em;
@Transactional
public int sendToTableOne()
{
return em.createNativeQuery("INSERT INTO TABLE_ONE"
+ " SELECT * FROM TABLE_TWO")
.executeUpdate();
}
我如何测试这个类?
我在Spring框架上使用JUnit Jupiter。
1条答案
按热度按时间368yc8dk1#
我不知道这是不是一个好的解决方案,但我得到100%的覆盖率。