Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. Scenario: Test
  2. Given then i should receive an email with the body off:
  3. """
  4. then i should receive an email with the body off
  5. then i should receive an email with the body off.
  6. """
  7.  
  8. @Given("^then i should receive an email with the body off:")
  9. public void how_are_your(String arg1) {
  10. Assert.assertEquals(arg1, "then i should receive an email with the body off" + "nthen i should receive an email with the body off.");
  11. }
  12.  
  13. java.lang.AssertionError: expected [then i should receive an email with the body off
  14. then i should receive an email with the body off.] but found [then i should receive an email with the body off
  15. then i should receive an email with the body off.]
  16.  
  17. expected [then i should receive an email with the body off
  18. then i should receive an email with the body off.]
  19.  
  20. found [then i should receive an email with the body off
  21. then i should receive an email with the body off.]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement