1   /***
2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3   */
4   package test.net.sourceforge.pmd.rules.strings;
5   
6   import net.sourceforge.pmd.Rule;
7   import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
8   
9   public class InsufficientStringBufferDeclarationTest extends SimpleAggregatorTst {
10  
11      private Rule rule;
12  
13      public void setUp() {
14          rule = findRule("strings", "InsufficientStringBufferDeclaration");
15      }
16  
17      public void testAll() {
18          runTests(rule);
19      }
20  }