需要編寫junit來檢查以下返回文件列表的方法。junit檢查返回列表的方法
public List<pdffiles> noticesPerform (Account account, fromDate, ToDate)
{
List<pdffiles> notices = new Arraylist();
............
..
return notices;
}
如何在JUnit檢查
如何檢查返回列表不爲空?是否需要使用asserThat或什麼?有沒有最好的方法來做到這一點?
如何通過測試對象賬號,fromDate,Todate來測試方法?