dev.spiti.utility.datareader.DataReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-reader Show documentation
Show all versions of data-reader Show documentation
A utility to read test data from excel and csv and write data as needed
The newest version!
package dev.spiti.utility.datareader;
public interface DataReader {
Object[] getData();
Object[] getData(String key, String value);
}