Skip to content

Commit

Permalink
Adds additional test for two-fer exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-khadykin committed Aug 7, 2017
1 parent a9fa9a4 commit 6065b40
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions exercises/two-fer/src/test/java/TwoferTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,13 @@ public void anotherNameGiven() {

assertEquals(expected, twofer.twofer(input));
}

@Ignore("Remove to run test")
@Test
public void emptyStringGiven() {
String input = "";
String expected = "One for , one for me.";

assertEquals(expected, twofer.twofer(input) );
}
}

0 comments on commit 6065b40

Please sign in to comment.