
com.automationrockstars.gir.data.TestData Maven / Gradle / Ivy
The newest version!
/*
*
*/
package com.automationrockstars.gir.data;
import com.automationrockstars.gir.data.impl.TestDataRecordBuilder;
import com.google.common.collect.FluentIterable;
import java.io.IOException;
public interface TestData {
String REMOTE_DATA_URL_PROP = "test.data.service.url";
String name();
boolean isShared();
FluentIterable records();
T record(int cycle);
TestDataRecordBuilder addNew();
String serialize();
void close() throws IOException;
void close(String location) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy