gpt4 book ai didi

java - 如何为 ClassNotFoundException 编写适当的单元测试?

转载 作者:搜寻专家 更新时间:2023-11-01 03:35:56 24 4
gpt4 key购买 nike

我想测试出现以下行的方法:

try (Connection connection = dataSource.getConnection()) {
((org.postgresql.PGConnection) connection).addDataType("geometry", Class.forName("org.postgis.PGgeometry"));
((org.postgresql.PGConnection) connection).addDataType("box3d", Class.forName("org.postgis.PGbox3d"));

try (Statement statement = connection.createStatement()) {
/*
* 4326 is the ID of a format in which the longitude and latitude values should be
* retreived.
*/
String sqlQuery = "SELECT ST_Transform(way, 4326) FROM planet_osm_line WHERE (highway='footway' OR highway='steps');";
ResultSet resultSet = statement.executeQuery(sqlQuery);

while (resultSet.next()) {
PGgeometry geom = (PGgeometry) resultSet.getObject(1);
LineString line = (LineString) geom.getGeometry();
Point[] wayPoints = line.getPoints();

pointList.add(wayPoints);
}
}
} catch (SQLException | ClassNotFoundException e) {
throw new OpenStreetMapDAOException(e.getMessage(), e);
}

这些行迫使我捕捉到 ClassNotFoundException,即 Class.forName("name") 的调用就是这样做的。

ClassNotFoundExceptioncatch 情况在我的测试中从未达到,因为这些类始终存在。 有没有办法测试我的 catch block ?

最佳答案

由于 org.postgresql.PGConnection 似乎是一个接口(interface),您可以尝试通过 Mockito 或类似的模拟框架模拟它。

org.postgresql.PGConnection connection = Mockito.mock(org.postgresql.PGConnection.class)
Mockito.doThrow( ...your exception here...).when( connection ).addDataType("geometry", Class.forName("org.postgis.PGgeometry"));

通过这两行,您可以为您的连接创建一个模拟对象,然后您可以在您的方法中使用它。当使用这些参数调用该方法时,此模拟对象将抛出给定的异常。

关于java - 如何为 ClassNotFoundException 编写适当的单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31588333/

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