-
-
Save angiejones/8ed376ffa81144f76907ba605a6fbd14 to your computer and use it in GitHub Desktop.
Complete a todo task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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