1 | |
package org.jbehave.jenkins; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
|
5 | |
import com.thalesgroup.dtkit.metrics.model.AbstractOutputMetric; |
6 | |
|
7 | |
@SuppressWarnings("serial") |
8 | 0 | public class MavenSurefireModel extends AbstractOutputMetric implements Serializable { |
9 | |
|
10 | |
public String getKey() { |
11 | 0 | return "surefire"; |
12 | |
} |
13 | |
|
14 | |
public String getDescription() { |
15 | 0 | return "MAVEN SUREFIRE OUTPUT FORMAT 1.0"; |
16 | |
} |
17 | |
|
18 | |
public String getVersion() { |
19 | 0 | return "1.0"; |
20 | |
} |
21 | |
|
22 | |
public String[] getXsdNameList() { |
23 | 0 | return null; |
24 | |
} |
25 | |
} |