We have a program in which we would like to accept acceptance tests.
Input is an XML file with various "tasks."
The result is another XML file with the results.
What would be the best practice for automating acceptance testing?
We will probably have to store pairs of input and output files, run the program on the inputs, and compare the result with the provided outputs.
Ant good for this task?
If acceptance tests cover all angular cases or are checked only that the functionality generally works.
Any other java acceptance test tips would be appreciated.
source share