View Javadoc

1   /*
2    * CylindricalBarrelCalorimeterTest.java
3    *
4    * Created on June 15, 2005, 12:00 PM
5    */
6   
7   package org.lcsim.geometry.subdetector;
8   
9   import java.io.InputStream;
10  
11  import junit.framework.TestCase;
12  import junit.framework.TestSuite;
13  
14  import org.lcsim.geometry.GeometryReader;
15  import org.lcsim.geometry.compact.Detector;
16  
17  /**
18   *
19   * @author jeremym
20   */
21  public class ScalingTest extends TestCase
22  {        
23      public ScalingTest()
24      {}
25      
26      protected void setUp() throws java.lang.Exception
27      {
28      	/*
29          InputStream in = 
30          	this.getClass().getResourceAsStream("/org/lcsim/geometry/subdetector/ScalingTest.xml");        
31          GeometryReader reader = new GeometryReader();
32          Detector det = reader.read(in);                  
33          return;
34          */
35      }
36      
37      public static junit.framework.Test suite()
38      {
39          return new TestSuite(ScalingTest.class);
40      }
41      
42      public void testScaling()
43      {
44      	//System.out.println("testScaling");
45      }    
46  }