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