View Javadoc

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