I have recently been using junit in eclipse and I am still learning. I know how to pass command line parameters in eclipse, but how do I pass them to a test case in Junit?
I will skip passing as somebody has already replied with that. To access you use:
System.getProperty("propert.name.here");
(returns String)