All,
I am having a hard time understanding the concept of assertXXX () in Junit. Currently, I have a method A(String fileName) that is generating a xml file for a input filename "XXX.XX" . So my test case includes testing if the code is generating any file and not just XML file which is wrong i.e. method A should only generate xml files.
My code is:
testCreateFile()
{
String fileName = "testFile.csv";
A(fileName);
File fileObj = new File (fileName);
assertFalse(fileObj.exists()); // Since I check if the file should not be created
}
If I do this, I get an AssertionError and jUnit window shows 2 Failures. Do I have to handle this Exception?