KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > net > sourceforge > pmd > rules > design > UnsynchronizedStaticDateFormatterTest


1 /**
2  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */

4 package test.net.sourceforge.pmd.rules.design;
5
6 import net.sourceforge.pmd.Rule;
7 import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
8
9 public class UnsynchronizedStaticDateFormatterTest extends SimpleAggregatorTst {
10
11     private Rule rule;
12
13     public void setUp() {
14         rule = findRule("design", "UnsynchronizedStaticDateFormatter");
15     }
16
17     public void testAll() throws Exception JavaDoc{
18         runTests(rule);
19     }
20 }
Popular Tags