Guest User

Untitled

a guest
Jun 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. @Test
  2. public void insertingThreeDollarsYieldsThreeDollars() {
  3. int expected = 3;
  4.  
  5. sut.insertDollars(expected);
  6.  
  7. assertEquals(sut.getDollarCount(),expected);
  8. }
Add Comment
Please, Sign In to add comment