Я хочу создать тест junit, чтобы увидеть, добавлено ли содержимое внутри файла в Arraylist
Вот моя функция:
public List readContent(final File file, final boolean isFirstFile) throws IOException
{
List<String> lines = new ArrayList<>();
try
{
BufferedReader br = new BufferedReader(new FileReader(file));
String strLine;
if (!isFirstFile)
{
br.readLine();
}
while ((strLine = br.readLine()) != null)
{
lines.add(strLine);
}
}
catch (IOException e)
{
LOG.info("An error occurred while reading file.");
e.printStackTrace();
}
return lines;
}
Заранее спасибо.