If you want to make your JUnit tests data driven, simply use @DataLoader annotation provided by EasyTest framework like this :
@RunWith(DataDrivenTestRunner.class)
@DataLoader(filePaths={testData.xml} , loaderType=LoaderType.XML)
public class TestClass{
@Test
public void simplTestMethod(@Param(name="name")String name , @Param(name="age")int age , @Param(name="expectedOutput")int expectedOutput){
...............//your test conditions here
}
}
This will then load your test data from an XML file and provide that test data to your test method.
Thus in short three things that you have to do in order to make your JUnit tests data driven is :
1) Use DataDrivenTestRunner class in @RunWith annotation
2) Use @DataLoader annotation to load and provide your test data to the test method.
3) Use @Param annotation on your test method.
You can find the details of how and what easytest supports here : https://github.com/EaseTech/easytest/wiki
Enjoy Data Driven Testing with JUnit