All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cucumber.io.Resource Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
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