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

org.jbehave.hudson.JBehaveInputMetric Maven / Gradle / Ivy

There is a newer version: 4.8.3
Show newest version
package org.jbehave.hudson;

import com.thalesgroup.dtkit.metrics.model.InputMetricXSL;
import com.thalesgroup.dtkit.metrics.model.InputType;
import com.thalesgroup.dtkit.metrics.model.OutputMetric;

@SuppressWarnings("serial")
public class JBehaveInputMetric extends InputMetricXSL {

    @Override
    public InputType getToolType() {
        return InputType.TEST;
    }

    @Override
    public String getToolName() {
        return "JBehave";
    }

    @Override
    public String getToolVersion() {
        return "3.x";
    }

    @Override
    public String getXslName() {
        return "jbehave-3.x-to-junit-1.0.xsl";
    }

    @Override
    public OutputMetric getOutputFormatType() {
        return new MavenSurefireModel();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy