Commit in lcsim/test on MAIN
NeighbourFindingTest.java+11-21.2 -> 1.3
JM: Only test specific list of detectors.

lcsim/test
NeighbourFindingTest.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- NeighbourFindingTest.java	22 May 2006 19:55:07 -0000	1.2
+++ NeighbourFindingTest.java	19 Sep 2006 18:45:17 -0000	1.3
@@ -1,5 +1,6 @@
 
 import java.util.List;
+import java.util.ArrayList;
 import java.util.Map;
 
 import junit.framework.Test;
@@ -20,9 +21,17 @@
 
     public void testDetectorLocator() throws Exception
     {
-        List<String> detNames = DetectorLocator.getDetectorNameList();
+        //List<String> detNames = DetectorLocator.getDetectorNameList();
+	List<String> detNames = new ArrayList<String>();
+	detNames.add("acme0605");
+	detNames.add("cdcaug05");
+	detNames.add("frankyaug05");
+	detNames.add("ldcaug05");
+	detNames.add("sdfeb05");
+	detNames.add("sdjan03");
+	detNames.add("sid00");
 
-        // loop over all cached detectors
+        // Loop over detector list.
         for(String detname : detNames ) {
             Detector det = DetectorLocator.findDetector(detname);
 
CVSspam 0.2.8