Advertisement
amandab

Untitled

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