View Javadoc

1   /*
2    * ClusterFindManager_Test.java
3    *
4    * Created on July 24, 2007, 4:34 PM
5    *
6    * $Id: ClusterFindManager_Test.java,v 1.1.1.1 2010/04/08 20:38:00 jeremy Exp $
7    */
8   
9   package org.lcsim.recon.tracking.trflayer;
10  
11  import junit.framework.TestCase;
12  
13  /**
14   *
15   * @author Norman Graf
16   */
17  public class ClusterFindManager_Test extends TestCase
18  {
19      private boolean debug;
20      /** Creates a new instance of ClusterFindManager_Test */
21      public void testClusterFindManager()
22      {
23           String component = "ClusterFindManager";
24          String ok_prefix = component + " (I): ";
25          String error_prefix = component + " test (E): ";
26          
27          if(debug) System.out.println( ok_prefix
28                  + "---------- Testing component " + component
29                  + ". ----------" );
30          
31          //********************************************************************
32          if(debug) System.out.println( ok_prefix
33                  + "No tests. abstract class");
34          if(debug) System.out.println( ok_prefix
35                  + "------------- All tests passed. -------------" );
36          
37          //********************************************************************       
38      }
39      
40  }