View Javadoc

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