com.smartbear.readyapi.client.teststeps.datasource.DataSources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client.teststeps.datasource;
public class DataSources {
public static ExcelDataSourceBuilder excel() {
return new ExcelDataSourceBuilder();
}
public static GridDataSourceBuilder grid() {
return new GridDataSourceBuilder();
}
public static FileDataSourceBuilder file() {
return new FileDataSourceBuilder();
}
}