View Javadoc

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