org.sahagin.share.yaml.YamlConvertible Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sahagin Show documentation
Show all versions of sahagin Show documentation
Sahagin makes your Selenium script more readable and maintainable.
The newest version!
package org.sahagin.share.yaml;
import java.util.Map;
public interface YamlConvertible {
public Map toYamlObject();
// classKeys and methodKeys are set by this method,
// but TestClass and TestMethod references are not set
public void fromYamlObject(Map yamlObject) throws YamlConvertException;
}