Skip to content

Instantly share code, notes, and snippets.

@eliasnogueira
Last active July 30, 2020 11: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 eliasnogueira/07f387ff99fbd66d4c2e10c47953345f to your computer and use it in GitHub Desktop.
Save eliasnogueira/07f387ff99fbd66d4c2e10c47953345f to your computer and use it in GitHub Desktop.
Blog post about Data Management - PersonTest code snippet
public class PersonTest {
@Test
public void personCanApplyForDriverLicense() {
PersonFactory personFactory = new PersonFactory();
Person person = personFactory.personAbleToGetDriverLicense();
person.getAge();
// your test goes here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment