Commit in GeomConverter/test/org/lcsim/geometry/compact/converter/lcdd on MAIN
PolyhedraBarrelCalorimeterConverterTest.java+29added 1.1
Added test for conversion of PolyhedraBarrelCalorimeter to LCDD.

GeomConverter/test/org/lcsim/geometry/compact/converter/lcdd
PolyhedraBarrelCalorimeterConverterTest.java added at 1.1
diff -N PolyhedraBarrelCalorimeterConverterTest.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ PolyhedraBarrelCalorimeterConverterTest.java	25 Aug 2005 08:01:07 -0000	1.1
@@ -0,0 +1,29 @@
+package org.lcsim.geometry.compact.converter.lcdd;
+
+import java.io.InputStream;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ *
+ * @author jeremym
+ */
+public class PolyhedraBarrelCalorimeterConverterTest extends TestCase
+{    
+    public PolyhedraBarrelCalorimeterConverterTest()
+    {}
+    
+    public static TestSuite suite()
+    {
+        return new TestSuite(PolyhedraBarrelCalorimeterConverterTest.class);
+    }
+    
+    public void test_PolyhedraBarrelCalorimeterConverter() throws Exception
+    {
+        InputStream in = 
+                PolyhedraBarrelCalorimeterConverterTest.class.
+                getResourceAsStream(
+                "/org/lcsim/geometry/subdetector/PolyhedraBarrelCalorimeterTest.xml");
+        new Main(true).convert("PolyhedraBarrelCalorimeterTest",in,null);
+    }
+}
CVSspam 0.2.8