我想测试我的 Guice 模块,并且我设法为仅包含绑定的模块进行了测试。现在我想知道如何测试这种模块?
class ModuleA extends AbstractModule {
@Override
protected voir configure() {
Names.bindProperties(binder(), new ModuleAProperties());
install(new ModuleB());
}
}
- 如何测试 bindProperties()?
- 如何测试安装()?