1 package net.sf.mavenhist.extractor.surefire;
2
3 /**
4 * Extracts the junit errors. Only for Maven 2.
5 */
6 public class TestSkippedExtractor extends AbstractTestExtractor {
7
8 /**
9 * Constructor.
10 */
11 public TestSkippedExtractor() {
12 super(3, -1);
13 }
14
15 /**
16 * {@inheritDoc}
17 */
18 public String getName() {
19 return "testskipped";
20 }
21 }