Hi,
I'm using Junit under ant to perform Selenium Test.My test cases need to read files which contain test data(in order to accomplish data driven test). I don't mind embedding the file names in the test cases, but I'd like to have the name of the directory where the data files are stored parameterized in the build.xml file.
What's the best way to pass information like that from build.xml down into the test cases? is it a good idea to use ant property? is it possible to inject Junit4 parameter from build.xml?
Thanks for your help