注入模拟@Service用于弹簧单元测试
2022-09-02 12:40:47
我正在测试一个使用@Autowired来注入服务的类:
public class RuleIdValidator implements ConstraintValidator<ValidRuleId, String> {
@Autowired
private RuleStore ruleStore;
// Some other methods
}
但是,如何在测试期间模拟 ruleStore?我不知道如何将我的模拟RuleStore注入Spring和自动布线系统。
谢谢