1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package test.net.sourceforge.pmd.ant;
5
6 import org.junit.runner.RunWith;
7 import org.junit.runners.Suite;
8 import org.junit.runners.Suite.SuiteClasses;
9
10
11 /**
12 * Tests for the net.sourceforge.pmd.ant package
13 *
14 * @author Boris Gruschko ( boris at gruschko.org )
15 * @version $Id: AntTests.java 5043 2007-02-09 01:38:14Z allancaplan $
16 */
17 @RunWith(Suite.class)
18 @SuiteClasses({FormatterTest.class, PMDTaskTest.class})
19 public class AntTests {
20 }
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43