here i am comparing two list and will store the result in Boolean but somehow the list is same still its storing the false.
public void verify_export_Functionality() throws IOException
{
boolean b = true;
b = Testfactory.read_element_file(models).equals(ExcelUtils.readdata("Model Export.xlsx"));
Assert.assertTrue(b);
System.out.println("Pass");
}
here is my list is same also
[test, test1, test, tsest]
[test, test1, test, tsest]