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