View Javadoc
1 /*** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package test.net.sourceforge.pmd.symboltable; 5 6 import junit.framework.Test; 7 import junit.framework.TestSuite; 8 9 10 /*** 11 * tests for the net.sourceforge.pmd.symboltable package 12 * 13 * @author Boris Gruschko ( boris at gruschko.org ) 14 * @version $Id: SymbolTableTests.java,v 1.2 2003/11/21 21:22:17 tomcopeland Exp $ 15 */ 16 public class SymbolTableTests 17 { 18 /*** 19 * test suite 20 * 21 * @return test suite 22 */ 23 public static Test suite( ) 24 { 25 TestSuite suite = 26 new TestSuite( "Test for test.net.sourceforge.pmd.symboltable" ); 27 28 //$JUnit-BEGIN$ 29 suite.addTestSuite( AbstractScopeTest.class ); 30 suite.addTestSuite( AcceptanceTest.class ); 31 suite.addTestSuite( BasicScopeFactoryTest.class ); 32 suite.addTestSuite( ClassScopeTest.class ); 33 suite.addTestSuite( DeclarationFinderTest.class ); 34 suite.addTestSuite( ImageFinderFunctionTest.class ); 35 suite.addTestSuite( LocalScopeTest.class ); 36 suite.addTestSuite( NameOccurrenceTest.class ); 37 suite.addTestSuite( NameOccurrencesTest.class ); 38 suite.addTestSuite( ScopeCreationVisitorTest.class ); 39 suite.addTestSuite( TypeSetTest.class ); 40 suite.addTestSuite( VariableNameDeclarationTest.class ); 41 42 //$JUnit-END$ 43 return suite; 44 } 45 } 46 47 48 /* 49 * $Log: SymbolTableTests.java,v $ 50 * Revision 1.2 2003/11/21 21:22:17 tomcopeland 51 * Continuing to clean up license headers 52 * 53 * Revision 1.1 2003/09/29 14:32:33 tomcopeland 54 * Committed regression test suites, thanks to Boris Gruschko 55 * 56 */

This page was automatically generated by Maven