Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created February 22, 2021 00:54
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 angiejones/8ed376ffa81144f76907ba605a6fbd14 to your computer and use it in GitHub Desktop.
Save angiejones/8ed376ffa81144f76907ba605a6fbd14 to your computer and use it in GitHub Desktop.
Complete a todo task
@Test
public void testTaskComplete(){
List<String> tasks = List.of("do taxes", "pick up dinner");
tasks.forEach(screen::addItem);
screen.completeItem(tasks.get(0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment