cucumber.io.Resource Maven / Gradle / Ivy
package cucumber.io;
import java.io.IOException;
import java.io.InputStream;
public interface Resource {
String getPath();
InputStream getInputStream() throws IOException;
String getClassName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy