Advertisement
amandab

Untitled

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