Did you have a look at EasyTest framework :
https://github.com/EaseTech/easytest/wiki/EasyTest-:-An-Introduction
In essence, you can write Data Driven test cases in a very intuitive manner.
Here is a simple example
@RunWith(DataDrivenTestRunner.class)
@DataLoader(filePaths = { "org/easetech/data/testData.csv" })
public class TestClass {
public Item TestMyFirstDataDrivenTest(@Param(name = "libraryId")Float libraryId, @Param(name="itemId")ItemId itemId) {
.......//Your test conditions here
return new Item();
You can see, you provide your test data in an external file (in the above example the test data is provided using CSV file, but you can use Excel, XML or even your own custom Data file to load the test data).
Next, the method takes the input parameters using @Param annotation. EasyTest Framework will read the test data from your test file and provide it to your test method. All you have to do is define your test data and write your test cases. Thats it.
For more details on how exactly to define your test data, look at the WIKI pages of EasyTest:
https://github.com/EaseTech/easytest/wiki
Cheers!
Anuj