我现在用 JACOCO 覆盖我们的接口代码。
比如:
@GetMapping("/pageList")
public ResultData pageList(PlanQueryPageData planQueryPageData) {
PlanQuery planquery = new PlanQuery;
ResultData result = planquery.search(planQueryPageData);
return result;
}
我请求了这个接口后,这个方法就标绿了(被 JACOCO 认为我已经覆盖)。
可是这个 PlanQuery 对象,它才是这个接口真正的处理方法。
而它是被引用过来的:import application.PlanQuery;
我想要去覆盖 PlanQuery 中的代码,该如何做呢?