Advertisement
amandab

Untitled

Oct 18th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.30 KB | None | 0 0
  1. public class DepositStepDefinitions {
  2.     @Given(“^a User has a zero balance in their account$”)
  3.     public void a_User_has_a_zero_balance_in_their_account( UserName name ) {
  4.         User user = new User( name );
  5.         Account account = new Account();
  6.         user.setAccount(account);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement