Hi, I have two classes:
test suite and test class
My test class has a method which will take inputs from a xml file. I have test case names, inputs and expected outputs in that xml. So the same class will run for multiple test cases with corresponding outputs.
Now I wan to create an
ANT task which will call testsuite and testsuite will internally call test class for each test case. I also want to generate a report.
How can I do that? I am using 1.7 version of httpunit.
Thanks.