1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package test.net.sourceforge.pmd.rules;
5
6 import org.junit.Before;
7
8 import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
9
10 public class UselessAssignmentRuleTest extends SimpleAggregatorTst {
11
12 @Before
13 public void setUp() {
14
15 }
16
17 public static junit.framework.Test suite() {
18 return new junit.framework.JUnit4TestAdapter(
19 UselessAssignmentRuleTest.class);
20 }
21 }