作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想测试出现以下行的方法:
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")
的调用就是这样做的。
ClassNotFoundException
的 catch
情况在我的测试中从未达到,因为这些类始终存在。 有没有办法测试我的 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/
我是一名优秀的程序员,十分优秀!