Skip to content

Instantly share code, notes, and snippets.

@ralphpina
Created February 16, 2017 20:11
Show Gist options
  • Save ralphpina/e6616620e28f3e92cbded61bdd1346c9 to your computer and use it in GitHub Desktop.
Save ralphpina/e6616620e28f3e92cbded61bdd1346c9 to your computer and use it in GitHub Desktop.
injecting dependencies.
public Builder withClient() {
this.testClient = new TestGiphyClient();
return this;
}
public Builder withUserManager(boolean real) {
if (real) {
this.userManager = new UserManagerImpl();
} else {
this.userManager = new TestUserManager();
}
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment