I have a DeliveryScheduleParser class that reads in a spreadsheet and parses it into a number of objects that all end up in a client object that is returned by the getClient() method in the DeliveryScheduleParser class.
public class DeliveryScheduleParser {
private final HashMap<String, Integer> _headerColumnNumbers;
private final File _file;
private HSSFSheet sheet;
private Client client;
public DeliveryScheduleParser(File file) {
this._file = file;
sheet = getSheet(_file);
_headerColumnNumbers = getHeaderMap(sheet);
parseSheet();
}
public Client getClient(){
return client;
}
// Other private methods here
}
The parseSheet() method inside this class basically does all the work and only calls some static Sanitizer methods that are separately unit tested.
My question is basically what would be the best way to make sure that the client object is properly filled with the right objects, and that those objects are in turn also filled with the right objects (there are a lot of ArrayLists nested within other ArrayLists).
I'd also like to run the unit test against spreadsheets with different data to ensure that all the parsing is correct.