Guest User

Untitled

a guest
Nov 12th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. softAssert = new SoftAssert();
  2. systemFile = openSystemFile();
  3. expectedFile = openExpectedFile();
  4. columns = listOfColumns();
  5.  
  6. for (column in columns) {
  7. softAssert.assertEquals(systemFile[column], expectedFile[column]);
  8. }
  9.  
  10. softAssert.assertAll();
Add Comment
Please, Sign In to add comment