Skip to content

Instantly share code, notes, and snippets.

@atomgomba
Created February 22, 2017 10:22
Show Gist options
  • Save atomgomba/c6e61248acd1e1698da7f8328d9b720f to your computer and use it in GitHub Desktop.
Save atomgomba/c6e61248acd1e1698da7f8328d9b720f to your computer and use it in GitHub Desktop.
Common steps of a unit test
// 1. arrange or setup step
Baby baby = new Baby();
// 2. act or action step
baby.removeToy();
// 3. assertion or verification step
assertTrue(baby.isCrying());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment