gpt4 book ai didi

java - Mockito:thenThrow(Exception.class) 和 thenThrow(new Exception()) 之间的区别

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:14:08 25 4
gpt4 key购买 nike

我是第一次使用 Mockito,我想知道使用 when(dao.create(order)).thenThrow(new SQLException()); 之间有什么区别>when(dao.create(order)).thenThrow(SQLException.class);.两者似乎都运行良好,我在 Mockito API 中找不到任何相关信息.

我能想到的唯一区别是,当使用 new SQLException() 时,您可以在构造函数中输入参数。是这个吗?

最佳答案

when(dao.create(order)).thenThrow(new SQLException()); 

这将抛出您提供的异常对象。例如,您可以使用特定参数创建异常,例如 new SQLException("description of exception", "sql:code")

when(dao.create(order)).thenThrow(SQLException.class); 

这将使用反射创建指定类的默认实例。

关于java - Mockito:thenThrow(Exception.class) 和 thenThrow(new Exception()) 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38852392/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com