When I am using code coverage in my application using EclEmma. It shows a
java.io.FileNotFoundException: C:\slask\isu.dsv error, due to which Junit test is not done. Can you please help me out?
java.io.FileNotFoundException: c:\slask\isu.dsv
77 Views Asked by Anirudh Gupta At
2
There are 2 best solutions below
0
On
Some points which needs to be checked
- Check for the foldername , filename , directory name if this kind of exception appears (any kind spelling errors).
- File you are checking for doesn't exists
- In java file path should contain double backslash which may not be pointed out incase you are using a normal text editor for writing the code.
There could be two possible reasons:
Thanks.