I have a method which retrieves DataTable and iterates each DataRow and stores each row in ArrayList.After the iteration is over it returns the ArrayList.How can i write test case to test the ArrayList ?
Example :
ArrayList =>0 ( {1,personName1,Designation} );
ArrayList =>1 ( {2,personName2,Designation} );
ArrayList =>2 ( {3,personName3,Designation} );
Thanks in advance.