diff geo-backend/src/test/java/de/intevation/gnv/geobackend/base/query/QueryExecutorTestCase.java @ 885:1c3efbd2fc5a

Removes trailing whitespace. geo-backend/trunk@850 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 07:49:16 +0000
parents 31595c0a1a33
children 8b442223741c
line wrap: on
line diff
--- a/geo-backend/src/test/java/de/intevation/gnv/geobackend/base/query/QueryExecutorTestCase.java	Fri Mar 26 15:23:03 2010 +0000
+++ b/geo-backend/src/test/java/de/intevation/gnv/geobackend/base/query/QueryExecutorTestCase.java	Mon Mar 29 07:49:16 2010 +0000
@@ -25,18 +25,18 @@
  *
  */
 public class QueryExecutorTestCase extends TestCase {
-    
-    
+
+
     /**
      * the logger, used to log exceptions and additonaly information
      */
     private static Logger log = null;
-    
+
     static{
         BasicConfigurator.configure();
         log = Logger.getLogger(QueryExecutorTestCase.class);
     }
-    
+
     /**
      * Constructor
      * @param name
@@ -44,18 +44,18 @@
     public QueryExecutorTestCase(String name) {
         super(name);
     }
-    
-    
+
+
     public void  testSpatialQuery(){
             try {
-            
+
             this.testQuery(5, "spatial_query", null);
        } catch (QueryException e) {
             log.error(e,e);
             fail();
         }
     }
-    
+
     public void  testSpatialQueryWithoutIntersects(){
             try {
 //            this.testQuery(286, "spatial_query_without_intersects", null);
@@ -69,7 +69,7 @@
             fail();
         }
     }
-    
+
     public void testSpatialQueryWithInnerSelect(){
         try {
             this.testQuery(1998, "spatial_query_with_innerselect", null);
@@ -78,8 +78,8 @@
             fail();
         }
     }
-    
-    
+
+
     public void  testChooseFis(){
         try {
             this.testQuery(1, "choose_fis_query", null);
@@ -88,44 +88,44 @@
             fail();
         }
     }
-    
-    
+
+
     /**
      * Tests if the Databaseconnection can be established and
      * Data could be read from the Database
      */
     public void testQueryExecutor(){
-        
+
         try {
-            
+
             this.testQuery(6, "mesh", null);
-            
+
             this.testQuery(1, "mesh_id", new String[]{"5"});
-            
-            
-            
+
+
+
         } catch (QueryException e) {
             log.error(e,e);
             fail();
         }
     }
-    
+
     public void testTimeSeriesQueries(){
-        
+
         try{
             // Test zum initialisieren der umgebung
             this.testQuery(6, "mesh", null);
-            
-            
+
+
             this.testQuery(11, "timeseries_stations", new String[]{"4"});
             this.testQuery(11, "timeseries_stations_op", new String[]{"4"});
             this.testQuery(1, "timeseries_interval", new String[]{"500042 ", "54"});
-            
+
         } catch (QueryException e) {
             log.error(e,e);
             fail();
         }
-        
+
     }
 
     /**
@@ -159,7 +159,7 @@
 //        }
         log.debug("Query dauerte: "+(System.currentTimeMillis()-start) +"ms");
     }
-    
+
 
 
     /**
@@ -167,20 +167,20 @@
      */
     @Override
     protected void setUp() throws Exception {
-        
+
         super.setUp();
         InputStream inputStream = new FileInputStream("src/test/ressources/ArcSDEConnectionPoolTestCase.properties");
         Properties properties = new Properties();
         properties.load(inputStream);
-        
+
         ConnectionPoolFactory cpf = ConnectionPoolFactory.getInstance();
         cpf.initializeConnectionPool(properties);
-        
-        
+
+
         inputStream = new FileInputStream("src/test/ressources/QueryExecutorTestCase.properties");
         properties = new Properties();
         properties.load(inputStream);
-        
+
         QueryContainerFactory qcf = QueryContainerFactory.getInstance();
         qcf.initializeQueryContainer(properties);
     }

http://dive4elements.wald.intevation.org