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

net.thucydides.core.steps.MetaField Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.thucydides.core.steps;

public class MetaField {

    private final String stepDescription;

    public MetaField(String stepDescription) {
        this.stepDescription = stepDescription;
    }

    public static MetaField from(String stepDescription) {
        return new MetaField(stepDescription);
    }

    public boolean isDefined() {
        return stepDescription.startsWith("!#");
    }

    public String template() {
        return stepDescription.substring(1);
    }

    public String fieldName()  {
        return stepDescription.substring(2);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy