I am really caught up about what are automated tests for a simple program of reading data from a file and finding the sums,average and min I feel like it has an obvious answer as I am thinking of test cases but I have no clue what it means. Can anyone please shed some light about it ?
|
closed as not a real question by pst, Lion, Luiggi Mendoza, Nik...., Robert Harvey♦ Oct 26 '12 at 6:12
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
OK ... take a long breath. Automated tests are tests that can be run automatically on your code. By automating the tests, you ensure that:
(The other kind of testing is where you manually run the program with different inputs, different configurations, different scenarios.) There are different kinds of automated testing.
In your case, it sounds like your application might be too simple for unit testing. But either way, what you would need to do is arrange some Java code (or shell some other kind of scripting) that:
You also need to make sure that your tests check the "edge" cases; e.g. empty input files, input files containing invalid data, and so on. |
||||
|
|