我有一个 Android 项目,其中包含两个源文件夹 src 和 test。在测试中,我有我的测试课程和一些模拟课程。我在编写测试的某个类中使用了 Android 的 RoboGuice 依赖注入。
测试在模拟器上的 Eclipse 中运行得非常好,但使用 maven clean install 失败。
No implementation for com.Store<com.MessageEvent> was bound.
使用喷油器时,测试在设置时失败。
mm = Guice.createInjector(new TestModule()).getInstance(MM.class);
这是我的绑定模块:
public class TestModule implements Module{
@Override
public void configure(com.google.inject.Binder binder) {
binder.bind(Context.class).toInstance(getContext());
binder.bind(Scheduler.class).to(MockScheduler.class);
binder.bind(EventManager.class).to(MockEventManager.class);
binder.bind(new TypeLiteral<Store<Message>>(){}).to(new TypeLiteral<JsonStore<Message>>(){});
binder.bind(new TypeLiteral<Store<MessageEvent>>(){}).to(new TypeLiteral<JsonStore<MessageEvent>>(){});
}
@Provides
JsonStore<MessageEvent> provideMessageEventJsonStore(Context context){
return new JsonStore<MessageEvent>(context, "message_events_test.json", MessageEvent.class);
}
@Provides
JsonStore<Message> provideMessageJsonStore(Context context){
return new JsonStore<Message>(context, "message_manager_test.json", Message.class);
}
}
为什么在 Maven 中运行测试而不是在 Eclipse 中运行测试时会抛出异常?