Guice モジュールをテストしたいのですが、バインディングを含むモジュールに対してのみテストできました。今、この種のモジュールをテストする方法を考えていますか?
class ModuleA extends AbstractModule {
@Override
protected voir configure() {
Names.bindProperties(binder(), new ModuleAProperties());
install(new ModuleB());
}
}
- bindProperties() をテストするには?
- install() をテストするには?