Skip to content

Instantly share code, notes, and snippets.

@atomgomba
Created February 22, 2017 10:31
Show Gist options
  • Save atomgomba/68530853082394958599b099dcccf729 to your computer and use it in GitHub Desktop.
Save atomgomba/68530853082394958599b099dcccf729 to your computer and use it in GitHub Desktop.
Dependency Injection bad practice
class Baby {
private Bottle mBottle;
public Baby() {
// rossz, nem tesztelhető kód
mBottle = new Bottle();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment