我刚刚开始使用 Guice,我能想到的一个用例是在测试中我只想覆盖单个绑定。我想我想使用其余的生产级绑定来确保一切设置正确并避免重复。
所以想象我有以下模块
public class ProductionModule implements Module {
public void configure(Binder binder) {
binder.bind(InterfaceA.class).to(ConcreteA.class);
binder.bind(InterfaceB.class).to(ConcreteB.class);
binder.bind(InterfaceC.class).to(ConcreteC.class);
}
}
在我的测试中,我只想覆盖 InterfaceC,同时保持 InterfaceA 和 InterfaceB 完好无损,所以我想要类似的东西:
Module testModule = new Module() {
public void configure(Binder binder) {
binder.bind(InterfaceC.class).to(MockC.class);
}
};
Guice.createInjector(new ProductionModule(), testModule);
我也尝试了以下方法,但没有运气:
Module testModule = new ProductionModule() {
public void configure(Binder binder) {
super.configure(binder);
binder.bind(InterfaceC.class).to(MockC.class);
}
};
Guice.createInjector(testModule);
有谁知道是否有可能做我想做的事,还是我完全吠错了树?
--- 跟进:如果我在接口上使用@ImplementedBy 标签然后在测试用例中提供一个绑定,这似乎可以实现我想要的,当两者之间存在 1-1 映射时效果很好接口和实现。
此外,在与同事讨论后,我们似乎会走上覆盖整个模块并确保我们正确定义模块的道路。尽管绑定在模块中放错位置并且需要移动,但这似乎可能会导致问题,因此可能会破坏大量测试,因为绑定可能不再可以被覆盖。