Skip to content

Instantly share code, notes, and snippets.

@atomgomba
Last active February 22, 2017 10:40
Show Gist options
  • Save atomgomba/fd4913ba72682106433e758a301d67a3 to your computer and use it in GitHub Desktop.
Save atomgomba/fd4913ba72682106433e758a301d67a3 to your computer and use it in GitHub Desktop.
Assert change in dependency
Baby baby = new Baby();
Bottle bottle = new MockBottle();
// a csecsemőnek szüksége van egy üvegre a táplálkozáshoz
baby.feed(bottle);
assertTrue(bottle.isConsumeCalled());
class MockBottle extends Bottle {
@Override void consume() {
mConsumeCalled = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment