由于
BeanPropertyRowMapper<T>是通用接口,因此您应该
any()像这样调用:
Mockito.when(jdbcTemplate.query(Matchers.anyString(), Matchers.<BeanPropertyRowMapper<MyClass>>any())).thenReturn(SOMELIST);

由于
BeanPropertyRowMapper<T>是通用接口,因此您应该
any()像这样调用:
Mockito.when(jdbcTemplate.query(Matchers.anyString(), Matchers.<BeanPropertyRowMapper<MyClass>>any())).thenReturn(SOMELIST);