我是Spring的新手,对JUnit和Mockito只有一点经验
我有以下方法需要单元测试
public static String getUserNames(final String userName {
ListsqlException {
return new String(rs.getString("USERNAME");
}
}
return results.get(0);
},userName)
有没有人对如何使用JUnit和Mockito实现这一点有任何建议?
非常感谢你提前!
最佳答案
如果你想进行纯单元测试,那么就行了
原文链接:https://www.f2er.com/spring/432691.htmlservice.getJdbcTemplate().query("....");
您将需要模拟Service,然后使用service.getJdbcTemplate()方法返回模拟JdbcTemplate对象,然后模拟模拟JdbcTemplate的查询方法以返回所需的List.像这样的东西:
@Mock
Service service;
@Mock
JdbcTemplate jdbcTemplate;
@Test
public void testGetUserNames() {
List
以上不需要任何Spring支持.如果您正在进行集成测试,而您实际上想要测试数据是否正确地从数据库中提取,那么您可能希望使用Spring Test Runner.