我正在测试一个使用@Autowired注入服务的类:
public class RuleIdValidator implements ConstraintValidator<ValidRuleId,String> {
@Autowired
private RuleStore ruleStore;
// Some other methods
}
但是,如何在测试过程中模拟规则库?我不知道如何将我的模拟RuleStore注入Spring并进入自动布线系统.
谢谢
原文链接:https://www.f2er.com/java/126448.html