Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class DepositStepDefinitions {
- @Given(“^a User has no money in their account$”)
- }
- public void a_User_has_no_money_in_their_current_account( UserName name ) {
- User user = new User( name );
- Account account = new Account();
- user.setAccount(account);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement