Skip to content

Instantly share code, notes, and snippets.

@olafleur
Created November 2, 2015 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olafleur/66731cbcd84a87f3bccb to your computer and use it in GitHub Desktop.
Save olafleur/66731cbcd84a87f3bccb to your computer and use it in GitHub Desktop.
public static class Module extends JukitoModule {
@Override
protected void configureTest() {
// Configure whatever you want here
bind(UserInformationService.class).to(FakeUserInformationService.class);
bind(UserInformationService.class).to(RealUserInformationService.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment