Skip to content

Commit

Permalink
added test for the uncovered condition
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Feb 13, 2020
1 parent 0c244f0 commit eef3d92
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -16,4 +16,9 @@ public void setup() {
public void testSayHello() {
assertEquals("Hello", app.sayHello());
}

@Test
public void testSayHelloWithName() {
assertEquals("Hello World", app.sayHello("World"));
}
}

0 comments on commit eef3d92

Please sign in to comment.