View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd;
2   
3   import java.io.InputStream;
4   import junit.framework.TestCase;
5   import junit.framework.TestSuite;
6   
7   /**
8    *
9    * @author jeremym
10   */
11  public class TPCConverterTest extends TestCase
12  {    
13      public TPCConverterTest()
14      {
15      }
16      
17      public static TestSuite suite()
18      {
19          return new TestSuite(TPCConverterTest.class);
20      }
21      
22      public void test_TPCConverter() throws Exception
23      {
24          InputStream in = TPCConverterTest.class.getResourceAsStream("/org/lcsim/geometry/subdetector/TPCTest.xml");
25          new Main().convert("TPCTest",in,null);
26      }
27  }